-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.48 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.48 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
{
"name": "@collagejs/vite",
"version": "1.0.0",
"description": "Monorepo for Vite plugins",
"private": true,
"workspaces": [
"packages/*"
],
"type": "module",
"scripts": {
"build": "npm run build:packages",
"build:packages": "npm run build:shared && npm run build:others",
"build:shared": "npm run build --workspace=packages/shared",
"build:others": "npm run build --workspace=packages/aim --workspace=packages/css --workspace=packages/im",
"dev": "npm run dev --workspaces",
"test": "npm run test --workspaces",
"lint": "npm run lint --workspaces",
"check": "npm run type-check --workspaces",
"clean": "npm run clean --workspaces",
"changeset": "changeset",
"changeset:version": "changeset version",
"changeset:publish": "changeset publish",
"preinstall": "node -e \"if(process.env.npm_execpath.indexOf('yarn') !== -1) throw new Error('Use npm instead of yarn')\"",
"postinstall": "npm run build"
},
"devDependencies": {
"@changesets/cli": "^2.29.8",
"@types/node": "^20.10.0",
"cpx2": "^7.0.1",
"picocolors": "^1.0.0",
"rimraf": "^6.1.2",
"typescript": "^5.9.0",
"vite": "^7.3.0",
"vite-plugin-dts": "^4.5.4",
"vitest": "^4.0.16"
},
"engines": {
"node": ">=24.0.0",
"npm": ">=11.0.0"
},
"keywords": [
"vite",
"plugins",
"monorepo",
"typescript"
],
"author": {
"name": "José Pablo Ramírez Vargas",
"email": "webJose@gmail.com"
},
"license": "MIT"
}