-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.8 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.8 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "@arcstack/webapis",
"version": "0.0.1",
"namespace": "@arcstack",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/ArcStackLab/webapis.git"
},
"description": "A Comprehensive Integration of All Web Standard APIs",
"scripts": {
"build": "nx run-many --target=build --exclude=@arcstack/webapis --exclude=@arcstack/demos",
"predist": "rm -rf dist",
"dist": "gulp dist",
"predemos": "rm -rf demos/public/out",
"demos": "gulp demos",
"build:all": "nx demos @arcstack/webapis && nx build @arcstack/demos",
"clean": "find . -type d -name 'dist' -not -path '*/node_modules/*' -not -path '*/.nx/*'",
"unsafe-clean": "find . -type d -name 'dist' -not -path '*/node_modules/*' -not -path '*/.nx/*' -exec rm -rf {} +",
"uninstall-husky": "pnpm uninstall husky --no-save && git config --unset core.hooksPath && pnpm dlx rimraf .husky"
},
"nx": {},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*": [
"eslint --fix --ext .js,.jsx,.ts,.tsx"
]
},
"entry": {
"permissions": "./dist/permissions.js"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.3",
"@eslint/js": "^9.39.2",
"@nx/eslint": "22.3.3",
"@nx/eslint-plugin": "^22.3.3",
"esbuild": "^0.23.1",
"eslint": "^9.39.2",
"globals": "^15.9.0",
"gulp": "^5.0.0",
"gulp-cli": "^3.0.0",
"gulp-flatten": "^0.4.0",
"husky": "^9.1.5",
"lint-staged": "^15.2.10",
"netlify-cli": "^23.13.0",
"nx": "22.3.3",
"prettier": "^3.3.3",
"tslib": "^2.7.0",
"tsup": "^8.2.4",
"typescript": "^5.5.4",
"typescript-eslint": "^8.51.0"
},
"keywords": [
"web",
"browser",
"api"
],
"author": "factman",
"license": "MIT",
"packageManager": "pnpm@9.15.4"
}