-
-
Notifications
You must be signed in to change notification settings - Fork 217
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 901 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 901 Bytes
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": "moon",
"private": true,
"packageManager": "yarn@4.12.0",
"scripts": {
"moon": "target/debug/moon --log trace",
"type": "target/debug/moon --log trace run :typecheck",
"clean": "rm -rf packages/*/{cjs,dist,dts,.eslintcache,tsconfig.*.tsbuildinfo}",
"build:types": "cd packages/types && NODE_ENV=production packemon build --addFiles --addExports --declaration"
},
"workspaces": [
"packages/*",
"scenarios/*",
"website"
],
"engines": {
"node": ">=22.14.0"
},
"devDependencies": {
"@types/node": "^22.19.11",
"babel-preset-moon": "^3.1.4",
"eslint": "^9.23.0",
"eslint-config-moon": "^4.0.0",
"execa": "^6.1.0",
"jest": "^29.7.0",
"jest-preset-moon": "^3.1.0",
"packemon": "^4.1.2",
"prettier": "^3.8.1",
"prettier-config-moon": "^1.2.2",
"tsconfig-moon": "^1.4.2",
"typescript": "5.9.3"
}
}