smartopen/package.json

57 lines
1.2 KiB
JSON
Raw Permalink Normal View History

2017-03-12 20:13:09 +00:00
{
2023-07-10 08:17:10 +00:00
"name": "@push.rocks/smartopen",
2022-03-18 01:15:55 +00:00
"version": "2.0.0",
2024-04-14 16:06:20 +00:00
"description": "A library for opening URLs or files in the default application",
2022-03-18 01:15:17 +00:00
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
"type": "module",
2017-03-12 20:13:09 +00:00
"scripts": {
2019-04-16 06:26:16 +00:00
"test": "tstest test/",
"build": "tsbuild"
2017-03-12 20:13:09 +00:00
},
"repository": {
"type": "git",
2024-05-29 12:15:14 +00:00
"url": "https://code.foss.global/push.rocks/smartopen.git"
2017-03-12 20:13:09 +00:00
},
"keywords": [
2024-04-14 16:06:20 +00:00
"URL opening",
"file handling",
"cross-platform",
"typescript",
"node.js",
"web development",
"automation",
"external resources"
2017-03-12 20:13:09 +00:00
],
"author": "Lossless GmbH",
"license": "MIT",
"bugs": {
"url": "https://gitlab.com/pushrocks/smartopen/issues"
},
2024-05-29 12:15:14 +00:00
"homepage": "https://code.foss.global/push.rocks/smartopen",
2017-03-12 20:20:43 +00:00
"dependencies": {
2022-03-18 01:15:17 +00:00
"open": "^8.4.0"
2017-08-17 07:03:16 +00:00
},
"devDependencies": {
2022-03-18 01:15:17 +00:00
"@gitzone/tsbuild": "^2.1.56",
"@gitzone/tstest": "^1.0.69",
"@pushrocks/tapbundle": "^5.0.2",
"@types/node": "^17.0.21"
2019-04-16 06:26:16 +00:00
},
2019-06-04 09:41:47 +00:00
"private": false,
2019-06-04 09:25:51 +00:00
"files": [
2022-03-18 01:15:17 +00:00
"ts/**/*",
"ts_web/**/*",
"dist/**/*",
"dist_*/**/*",
"dist_ts/**/*",
"dist_ts_web/**/*",
"assets/**/*",
2019-06-04 09:25:51 +00:00
"cli.js",
"npmextra.json",
"readme.md"
2022-03-18 01:15:17 +00:00
],
"browserslist": [
"last 1 chrome versions"
2019-06-04 09:25:51 +00:00
]
2023-07-10 08:17:10 +00:00
}