-
Notifications
You must be signed in to change notification settings - Fork 112
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.45 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.45 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "utoo",
"version": "1.0.0",
"description": "",
"packageManager": "npm@11.6.2",
"main": "index.js",
"scripts": {
"build": "turbo run build",
"test": "turbo run test",
"vitest:all": "turbo run test --filter=@utoo/pack --filter=@utoo/pack-shared",
"lint": "turbo run lint",
"dev": "turbo run dev",
"clean": "turbo run clean",
"biome": "biome check --write .",
"prepare": "husky"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@biomejs/biome": "2.1.2",
"husky": "^9.1.7",
"tombi": "^0.7.32",
"turbo": "^2.6.3",
"vitest": "^3.2.4"
},
"workspaces": [
"packages/pack",
"packages/pack-shared",
"packages/pack-cli",
"packages/utoo-web",
"crates/pack-core/js",
"crates/pack/js",
"examples/define",
"examples/config-js",
"examples/externals",
"examples/multi-entries-heavy",
"examples/webpack-compat",
"examples/with-antd",
"examples/with-less",
"examples/with-library",
"examples/with-nodejs",
"examples/with-sass",
"examples/with-tailwind",
"examples/resolve",
"examples/with-react",
"examples/utooweb-demo",
"examples/expose-entry-exports",
"examples/pack-esm-api",
"examples/inline-css",
"examples/with-postcss",
"examples/with-swc-plugin",
"examples/with-server-references"
],
"repository": "https://github.com/utooland/utoo",
"engines": {
"install-node": "20"
}
}