-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.28 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.28 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": "klint-monorepo",
"version": "0.4.0",
"private": true,
"type": "module",
"description": "Klint - Modern creative coding library",
"author": "arthurcloche",
"license": "MIT",
"workspaces": [
"packages/klint",
"docusaurus",
"klint-editor"
],
"scripts": {
"build": "npm run build --workspace=packages/klint",
"build:docs": "npm run build --workspace=docusaurus",
"dev": "npm run dev --workspaces --if-present",
"dev:klint": "npm run dev --workspace=packages/klint",
"dev:docs": "npm run start --workspace=docusaurus",
"dev:editor": "npm run dev --workspace=klint-editor",
"test": "npm run test --workspaces --if-present",
"lint": "npm run lint --workspaces --if-present",
"clean": "npm run clean --workspaces --if-present",
"publish:all": "npm run build && npm publish --workspace=packages/klint --access public",
"sandbox": "npx @shopify/klint klint-create-sandbox"
},
"devDependencies": {
"rimraf": "^5.0.0",
"typescript": "^5.0.0"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=8.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/Shopify/Klint"
},
"bugs": {
"url": "https://github.com/Shopify/Klint/issues"
},
"homepage": "https://github.com/Shopify/Klint"
}