-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·128 lines (128 loc) · 3.39 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
{
"name": "@semantic-ui/core",
"version": "0.10.1",
"title": "Semantic UI Next",
"description": "Semantic empowers designers and developers by creating a shared vocabulary for UI.",
"homepage": "http://next.semantic-ui.com",
"author": "Jack Lukic <[email protected]>",
"main": "src/semantic-ui.js",
"module": "src/semantic-ui.js",
"license": "MIT",
"type": "module",
"files": [
"dist/**",
"src/**"
],
"scripts": {
"build": "wireit",
"dev": "wireit",
"build-docs": "wireit",
"serve": "wireit",
"watch": "wireit",
"publish": "wireit",
"test:case": "wireit",
"prettify": "prettierx ./ --write --ignore-unknown",
"format": "npx dprint fmt",
"test": "vitest --c tests/configs/vitest/vitest.config.js",
"test:ui": "vitest --ui --c tests/configs/vitest/vitest-ui.config.js",
"ci:coverage": "vitest --c tests/configs/vitest/ci-coverage.config.js",
"ci:test": "vitest --c tests/configs/vitest/ci-test-all.config.js",
"ci:test:unit": "vitest --c tests/configs/vitest/ci-test-unit.config.js",
"ci:test:browser": "vitest --c tests/configs/vitest/ci-test-browser.config.js",
"prepare": "husky"
},
"wireit": {
"build": {
"command": "node ./tasks/build.js",
"dependencies": [
"build:packages"
]
},
"watch": {
"command": "node ./tasks/watch.js",
"service": true
},
"dev": {
"command": "cd docs && npm install && npx link ../ && npm run dev",
"dependencies": [
"watch"
]
},
"build-docs": {
"command": "cd docs && npm install && npx link ../ && npm run build",
"dependencies": [
"build"
]
},
"build:packages": {
"dependencies": [
"./packages/component:build",
"./packages/query:build",
"./packages/reactivity:build",
"./packages/renderer:build",
"./packages/specs:build",
"./packages/templating:build",
"./packages/utils:build"
]
},
"test:case": {
"command": "node ./tasks/test-case.js"
},
"serve:docs": {
"command": "cd docs && npm run dev",
"service": true
},
"serve": {
"command": "node ./tasks/serve.js",
"service": true
},
"build:docs": {
"command": "cd docs && npm run build"
},
"publish": {
"command": "node ./scripts/publish.js",
"dependencies": [
"build"
]
}
},
"browserslist": "> 0.5%, last 2 versions, not dead",
"dependencies": {
"@semantic-ui/component": "^0.10.1",
"@semantic-ui/specs": "^0.10.1"
},
"devDependencies": {
"@commitlint/cli": "^19.8.0",
"@commitlint/config-conventional": "^19.8.0",
"@types/node": "^22.13.10",
"@typescript-eslint/eslint-plugin": "^8.26.1",
"@typescript-eslint/parser": "^8.26.1",
"@vitest/browser": "^3.0.8",
"@vitest/coverage-istanbul": "^3.0.8",
"@vitest/ui": "^3.0.8",
"chalk": "^5.4.1",
"dprint": "^0.49.0",
"esbuild": "^0.25.1",
"husky": "^9.1.7",
"inquirer": "^12.4.3",
"jsdom": "^26.0.0",
"lint-staged": "^15.4.3",
"playwright": "^1.51.0",
"underscore": "^1.13.7",
"vitest": "^3.0.8",
"wireit": "^0.14.11"
},
"ciDependencies": {
"axios": "^1.6.8",
"decompress": "^4.2.1",
"glob": "^10.3.10"
},
"workspaces": [
"packages/*",
"docs/*",
"examples/*"
],
"lint-staged": {
"**/*.js": "npx dprint fmt"
}
}