-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
executable file
·46 lines (46 loc) · 1.05 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
{
"name": "cross-conf-env",
"description": "To cross-platform the config and root variable reference of package.json in npm-scripts.",
"version": "2.0.0",
"author": "akabeko",
"license": "MIT",
"engines": {
"node": ">= 18"
},
"main": "dist/lib/index.js",
"bin": "dist/bin/index.js",
"keywords": [
"npm-scripts",
"npm_package_config",
"package.json",
"variable"
],
"repository": {
"type": "git",
"url": "git+https://github.com/akabekobeko/npm-cross-conf-env.git"
},
"homepage": "https://github.com/akabekobeko/npm-cross-conf-env#readme",
"bugs": {
"url": "https://github.com/akabekobeko/npm-cross-conf-env/issues"
},
"files": [
"dist"
],
"scripts": {
"test": "vitest",
"start": "npm run watch",
"tsc": "tsc --noEmit",
"build": "tsc",
"watch": "tsc -w",
"prepare": "npm run build"
},
"dependencies": {
"cross-spawn": "^7.0.3"
},
"devDependencies": {
"@types/node": "^20.11.28",
"ts-jest": "^29.1.2",
"typescript": "^5.4.2",
"vitest": "^1.4.0"
}
}