-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 2.85 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "resolid",
"private": true,
"type": "module",
"scripts": {
"preinstall": "npx only-allow pnpm",
"postinstall": "lefthook install",
"lint": "pnpm run -r --if-present lint",
"format": "prettier --write .",
"test": "pnpm test -r --if-present",
"website:dev": "pnpm --filter website run dev",
"website:build": "pnpm --filter website... run build",
"website:vercel": "VERCEL=1 pnpm --filter website... run build",
"resolid": "pnpm --filter website exec -- pnpm --silent resolid",
"drizzle": "pnpm --filter website exec -- pnpm --silent drizzle"
},
"devDependencies": {
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@resolid/config": "^3.1.0",
"@types/node": "^20.17.10",
"lefthook": "^1.10.0",
"prettier": "^3.4.2",
"prettier-plugin-tailwindcss": "^0.6.9",
"typescript": "^5.7.2"
},
"engines": {
"node": "22.x",
"pnpm": "9.x"
},
"packageManager": "pnpm@9.15.1",
"homepage": "https://www.resolid.tech",
"repository": {
"type": "git",
"url": "https://github.com/huijiewei/resolid.git"
},
"pnpm": {
"overrides": {
"@mdx-js/mdx": "^3.1.0",
"esbuild": "^0.24.2",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-is": "^19.0.0",
"hasown": "npm:@nolyfill/hasown@^1",
"is-arguments": "npm:@nolyfill/is-arguments@^1",
"is-generator-function": "npm:@nolyfill/is-generator-function@^1",
"is-typed-array": "npm:@nolyfill/is-typed-array@^1",
"isarray": "npm:@nolyfill/isarray@^1",
"side-channel": "npm:@nolyfill/side-channel@^1",
"which-typed-array": "npm:@nolyfill/which-typed-array@^1",
"is-core-module": "npm:@nolyfill/is-core-module@^1",
"array-flatten": "npm:@nolyfill/array-flatten@^1",
"safe-buffer": "npm:@nolyfill/safe-buffer@^1",
"safer-buffer": "npm:@nolyfill/safer-buffer@^1",
"array-includes": "npm:@nolyfill/array-includes@^1",
"array.prototype.findlast": "npm:@nolyfill/array.prototype.findlast@^1",
"array.prototype.flat": "npm:@nolyfill/array.prototype.flat@^1",
"array.prototype.flatmap": "npm:@nolyfill/array.prototype.flatmap@^1",
"array.prototype.tosorted": "npm:@nolyfill/array.prototype.tosorted@^1",
"es-iterator-helpers": "npm:@nolyfill/es-iterator-helpers@^1",
"object.assign": "npm:@nolyfill/object.assign@^1",
"object.entries": "npm:@nolyfill/object.entries@^1",
"object.fromentries": "npm:@nolyfill/object.fromentries@^1",
"object.values": "npm:@nolyfill/object.values@^1",
"safe-regex-test": "npm:@nolyfill/safe-regex-test@^1",
"string.prototype.includes": "npm:@nolyfill/string.prototype.includes@^1",
"string.prototype.matchall": "npm:@nolyfill/string.prototype.matchall@^1",
"string.prototype.repeat": "npm:@nolyfill/string.prototype.repeat@^1"
}
}
}