-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 936 Bytes
/
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
{
"name": "root",
"private": true,
"version": "0.4.0",
"workspaces": [
"packages/*",
"tests/*"
],
"scripts": {
"install:all": "npm install -w @poppy-ui/core -w @poppy-ui/vue",
"core:install": "npm install -w @poppy-ui/core",
"core:start": "npm start -w @poppy-ui/core",
"core:build": "npm run build -w @poppy-ui/core",
"vue:install": "npm install -w @poppy-ui/vue",
"vue:build": "npm run build -w @poppy-ui/vue",
"vue:test": "npm run dev -w test-vue",
"format": "biome format",
"format:fix": "biome format --write",
"lint": "biome lint",
"lint:fix": "biome lint --write",
"prepare": "git config core.hooksPath .githooks"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@types/node": "^22.10.2",
"audit-ci": "^7.1.0"
},
"engines": {
"node": ">=20.x"
}
}