-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.19 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.19 KB
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
{
"name": "@ykn/mobius",
"version": "1.0.11",
"description": "find all circular dependency for typescript",
"main": "./build/index.js",
"bin": {
"mobius": "./build/bin/mobius"
},
"scripts": {
"prebuild": "node -p \"'export const LIB_VERSION = ' + JSON.stringify(require('./package.json').version) + ';'\" > src/version.ts",
"build:swc": "swc src -d build --config-file .swcrc",
"build:tsc": "tsc",
"build": "sh build.sh",
"dev": "yarn prebuild && yarn build && chmod 777 ./build/bin/mobius && ./build/bin/mobius",
"test": "echo \"Error: no test specified\" && exit 1",
"test:demo1": "swc test -d test-build --config-file .swcrc && NODE_DEBUG=mobius node ./test-build/demo1/D.js"
},
"keywords": [
"circular",
"dependency"
],
"files": [
"build/**/*"
],
"repository": "https://github.com/yukinotech/mobius",
"author": "yukinotech",
"license": "MIT",
"devDependencies": {
"@swc/cli": "^0.1.62",
"@types/node": "^20.4.5",
"@types/resolve": "^1.20.2",
"prettier": "^3.0.1"
},
"dependencies": {
"@swc/core": "^1.3.69",
"chalk": "^4.1.2",
"commander": "^11.0.0",
"resolve": "^1.22.4",
"typescript": "^5.1.6"
}
}