-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 1.16 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
47
48
{
"name": "@readonlylink/cli",
"version": "0.0.18",
"repository": "github:readonlylink/readonlylink-cli",
"files": [
"lib"
],
"scripts": {
"build": "tsc",
"watch": "tsc --watch",
"test:js": "test-runner test node 'lib/**/*.test.js'",
"test": "npm-run-all test:*",
"format": "prettier src --write"
},
"bin": {
"ro": "bin/ro.js"
},
"prettier": {
"semi": false,
"trailingComma": "es5"
},
"devDependencies": {
"@types/ignore-walk": "^4.0.0",
"@types/lodash": "^4.14.182",
"@types/nanoid": "^2.1.0",
"@types/node": "^17.0.34",
"@xieyuheng/test-runner": "^0.2.5",
"npm-run-all": "^4.1.5",
"prettier": "^2.6.2",
"prettier-plugin-organize-imports": "^2.3.4",
"typescript": "^4.6.4"
},
"dependencies": {
"@xieyuheng/command-line": "^0.0.7",
"@xieyuheng/coupler": "^0.0.2",
"@xieyuheng/ty": "^0.1.12",
"axios": "^0.27.2",
"fast-deep-equal": "^3.1.3",
"ignore": "^5.2.0",
"ignore-walk": "^5.0.1",
"lodash": "^4.17.21",
"nanoid": "^3.3.4",
"node-watch": "^0.7.3",
"picocolors": "^1.0.0",
"readdirp": "^3.6.0"
},
"license": "GPL-3.0-or-later"
}