-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
42 lines (42 loc) · 989 Bytes
/
package.json
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
{
"name": "ds25",
"private": true,
"version": "0.0.1",
"description": "Canonical's Design System",
"author": {
"email": "[email protected]",
"name": "Canonical Webteam"
},
"repository": {
"type": "git",
"url": "https://github.com/canonical/ds25"
},
"license": "LGPL-3.0",
"bugs": {
"url": "https://github.com/canonical/ds25/issues"
},
"homepage": "https://github.com/canonical/ds25#readme",
"workspaces": [
"configs/*",
"packages/*",
"packages/react/*",
"packages/styles/primitives/*",
"packages/styles/modes/*",
"packages/styles/elements",
"packages/styles/main/*",
"apps/*",
"apps/react/*"
],
"scripts": {
"build": "lerna run build",
"prepare": "bun run build",
"lerna": "lerna",
"check": "lerna run check",
"check:fix": "lerna run check:fix",
"test": "lerna run test",
"special:clean": "rm -rf node_modules .nx"
},
"devDependencies": {
"lerna": "^8.1.8"
}
}