-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.19 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.19 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
{
"name": "quilt",
"version": "0.3.0",
"private": true,
"type": "module",
"description": "A spreadsheet where every cell is a live, addressable capability. The grid is the runtime.",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/superinstance/quilt.git"
},
"bugs": {
"url": "https://github.com/superinstance/quilt/issues"
},
"homepage": "https://github.com/superinstance/quilt#readme",
"engines": {
"node": ">=18.0.0"
},
"workspaces": [
"packages/*"
],
"scripts": {
"build": "npm run build --workspaces --if-present",
"test": "npm run test --workspaces --if-present",
"test:core": "cd packages/core && npm run test",
"dev": "cd packages/cli && npm run dev",
"lint": "eslint . --ext .ts,.js,.mjs,.cjs",
"lint:fix": "eslint . --ext .ts,.js,.mjs,.cjs --fix",
"format": "echo 'format placeholder'"
},
"devDependencies": {
"@types/node": "^26.2.0",
"@typescript-eslint/eslint-plugin": "^8.67.0",
"@typescript-eslint/parser": "^8.67.0",
"eslint": "^10.8.1",
"typescript": "^7.0.2",
"vitest": "^4.1.10"
},
"dependencies": {
"yaml": "^2.3.0",
"zod": "^4.4.3"
}
}