-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.1 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 2.1 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "p31",
"version": "0.1.0",
"description": "P31 Labs — Assistive technology for neurodivergent individuals. The mesh holds.",
"private": true,
"packageManager": "pnpm@10.22.0",
"scripts": {
"dev": "turbo dev",
"dev:shelter": "pnpm --filter @p31labs/shelter dev",
"dev:sprout": "pnpm --filter @p31labs/sprout dev",
"dev:scope": "pnpm --filter @p31labs/scope dev",
"dev:centaur": "pnpm --filter @p31labs/centaur dev",
"dev:website": "pnpm --filter @p31labs/website dev",
"build": "turbo build",
"build:shelter": "pnpm --filter @p31labs/shelter build",
"build:scope": "pnpm --filter @p31labs/scope build",
"build:centaur": "pnpm --filter @p31labs/centaur build",
"build:web": "pnpm --filter @p31labs/web build",
"test": "turbo test",
"test:all": "turbo run test",
"test:shelter": "pnpm --filter @p31labs/shelter test",
"test:scope": "pnpm --filter @p31labs/scope test",
"test:centaur": "pnpm --filter @p31labs/centaur test",
"lint": "turbo lint",
"typecheck": "turbo typecheck",
"clean": "turbo clean && rm -rf node_modules",
"preflight": "node scripts/preflight-smoke.mjs",
"launch:check": "node scripts/launch-check.mjs",
"prepare": "husky",
"gas:push": "clasp push",
"gas:pull": "clasp pull",
"gas:open": "clasp open"
},
"keywords": [
"p31",
"phosphorus-31",
"assistive-technology",
"neurodivergent",
"tetrahedron",
"buffer",
"node-one"
],
"author": "P31 Labs",
"license": "AGPL-3.0",
"repository": {
"type": "git",
"url": "https://github.com/p31labs/p31.git"
},
"homepage": "https://phosphorus31.org",
"devDependencies": {
"@google/clasp": "^3.1.0",
"@types/google-apps-script": "^1.0.100",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"turbo": "^2.4.4",
"wrangler": "^3.114.17"
},
"engines": {
"node": ">=20.0.0"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md,yml,yaml}": [
"prettier --write"
],
"*.py": [
"black",
"isort"
]
}
}