-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 635 Bytes
/
Copy pathpackage.json
File metadata and controls
26 lines (26 loc) · 635 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
{
"name": "near-orm-project",
"private": true,
"type": "module",
"workspaces": [
"packages/core"
],
"devDependencies": {
"@biomejs/biome": "^1.9.3",
"@types/node": "^22.7.4",
"@vitest/coverage-v8": "^2.1.2",
"fake-indexeddb": "^6.0.0",
"pkg-pr-new": "^0.0.39",
"rimraf": "^6.0.1",
"terser": "^5.34.1",
"typescript": "^5.7.3",
"vitest": "^2.1.2"
},
"scripts": {
"build": "npm run build:orm && npm run minify",
"build:orm": "npm run build --workspaces",
"minify": "node ./minify.js",
"prepublishOnly": "npm run build",
"test": "npm run test --workspaces"
}
}