-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.16 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.16 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
{
"name": "diui-repo",
"version": "1.0.0",
"private": true,
"description": "Repo for all diui code",
"main": "index.js",
"scripts": {
"serve:watch:docs": "cd packages/docs && pnpm dev",
"dev": "pnpm --parallel --recursive dev",
"lint": "pnpm --parallel --recursive lint",
"lint:fix": "pnpm --parallel --recursive lint:fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"build:all": "cd packages/docs && pnpm build && cd ../lib && pnpm build",
"build:lib": "cd packages/lib && pnpm build",
"build:lib:watch": "cd packages/lib && pnpm build:watch",
"preinstall": "npx only-allow pnpm",
"prepare": "husky"
},
"devDependencies": {
"@eslint/js": "^9.0.0",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"eslint": "^9.0.0",
"eslint-plugin-astro": "^1.2.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-n": "^17.0.0",
"eslint-plugin-promise": "^7.0.0",
"globals": "^15.0.0",
"husky": "^9.0.0",
"lint-staged": "^15.0.0",
"prettier": "^3.3.0",
"prettier-plugin-astro": "^0.14.0"
},
"author": "",
"license": "ISC"
}