-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.11 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
{
"name": "webufs",
"version": "0.1.0",
"description": "A Linux-style Web FileSystem Framework",
"author": "parabola2004 <[email protected]> (http://parabola2004.eastasia.cloudapp.azure.com/)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/zhuocheng2004/webufs.git"
},
"workspaces": [
"packages/**"
],
"scripts": {
"prepare": "sh ./prepare_husky.sh || true",
"build": "lerna run build",
"test": "lerna run test",
"lint": "lerna run lint",
"prettier": "lerna run prettier",
"publish": "./publish.sh",
"test-publish": "./publish.sh --dry-run"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^15.2.3",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"eslint": "^8.56.0",
"husky": "^9.0.11",
"jest": "^29.7.0",
"jsdom": "^24.0.0",
"lerna": "^8.1.2",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"rollup": "^4.12.0",
"rollup-plugin-dts": "^6.1.0",
"rollup-plugin-esbuild": "^6.1.1"
},
"publishConfig": {
"access": "public"
}
}