-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
50 lines (50 loc) · 1.27 KB
/
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
43
44
45
46
47
48
49
50
{
"name": "foundation",
"private": true,
"version": "0.0.1",
"packageManager": "[email protected]",
"type": "module",
"license": "MIT",
"author": "Wroud",
"homepage": "https://wroud.dev",
"repository": {
"type": "git",
"url": "https://github.com/Wroud/foundation"
},
"workspaces": {
"packages": [
"packages/*",
"packages/@wroud/*"
]
},
"devDependencies": {
"@commitlint/cli": "^19",
"@commitlint/config-conventional": "^19",
"@swc/core": "^1",
"@testing-library/dom": "^10",
"@vitest/coverage-v8": "^2",
"@wroud/tests-runner": "workspace:*",
"@wroud/ts-project-linker": "workspace:*",
"@wroud/ts-template": "workspace:^",
"concurrently": "^9",
"happy-dom": "^15",
"husky": "^9",
"is-ci": "^3",
"pinst": "^3",
"prettier": "^3",
"rimraf": "^6",
"typescript": "^5",
"vitest": "^2"
},
"dependencies": {
"tslib": "^2"
},
"scripts": {
"prepare": "is-ci || husky || true",
"build": "cd packages/_aggregate && yarn build",
"dev": "cd packages/_aggregate && yarn dev",
"clear": "rimraf --glob 'packages/**/lib' 'packages/**/node_modules' 'packages/**/coverage' coverage node_modules",
"test": "tests-runner",
"test:ci": "CI=true yarn run test run"
}
}