-
Notifications
You must be signed in to change notification settings - Fork 84
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.14 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.14 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
{
"name": "@dtcg/monorepo",
"private": true,
"version": "1.0.0",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/design-tokens/community-group.git"
},
"author": "DTCG and Contributors",
"license": "SEE LICENSE.md",
"packageManager": "pnpm@10.23.0",
"scripts": {
"build": "pnpm run build:tr && pnpm run build:www",
"build:tr": "pnpm --filter @dtcg/tr run build",
"build:www": "pnpm --filter @dtcg/www run build",
"dev": "pnpm run build:tr && pnpm --parallel --recursive --if-present run dev",
"lint": "pnpm --recursive --parallel --stream --if-present run lint",
"spellcheck": "cspell \"**\"",
"format": "pnpm --recursive --parallel --stream --if-present run format",
"prepare": "husky",
"install-browsers": "puppeteer browsers install chrome",
"test": "pnpm --recursive --if-present run test"
},
"lint-staged": {
"*.{md,yml,json,html}": "prettier --write"
},
"devDependencies": {
"cspell": "^9.4.0",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"prettier": "^3.7.4",
"prettier-plugin-astro": "^0.14.1",
"puppeteer": "^24.32.0"
}
}