-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 1.89 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
{
"name": "@galacean/effects-components",
"version": "1.0.0",
"description": "Galacean Effects components",
"module": "./es/index/index.mjs",
"main": "./dist/index.js",
"brower": "./dist/index.min.js",
"types": "./es/index.d.ts",
"files": [
"dist",
"es"
],
"scripts": {
"dev": "vite",
"preview": "concurrently \"vite build\" \"sleep 6 && vite preview\"",
"prebuild": "pnpm clean",
"build": "pnpm build:module",
"build:module": "rollup -c",
"build:demo": "vite build",
"build:docs": "pnpm build && typedoc",
"lint": "eslint --ext .ts .",
"lint:fix": "eslint --fix --ext .ts .",
"check:ts": "tsc -b ./tsconfig.check.json",
"clean": "rimraf dist es",
"prepare": "husky install",
"prepublishOnly": "pnpm build"
},
"browserslist": [
"iOS 9"
],
"dependencies": {
"@galacean/effects": "^2.0.4",
"bezier-easing": "^2.1.0"
},
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@rollup/plugin-commonjs": "^21.1.0",
"@rollup/plugin-node-resolve": "^13.3.0",
"@rollup/plugin-terser": "^0.4.3",
"@typescript-eslint/eslint-plugin": "^7.10.0",
"@typescript-eslint/parser": "^7.10.0",
"@vitejs/plugin-legacy": "^4.1.1",
"concurrently": "^8.2.2",
"eslint": "^8.56.0",
"eslint-plugin-compat": "^4.2.0",
"eslint-plugin-promise": "^6.1.1",
"husky": "^9.0.11",
"lint-staged": "^11.2.6",
"pnpm": "^8.15.7",
"rimraf": "^5.0.8",
"rollup": "^2.79.1",
"rollup-plugin-typescript2": "^0.34.1",
"tslib": "^2.6.2",
"typedoc": "^0.26.3",
"typescript": "^5.3.3",
"vite": "^4.5.3",
"vite-tsconfig-paths": "^4.2.2"
},
"contributors": [
{
"name": "十弦"
}
],
"author": "Ant Group CO., Ltd.",
"license": "MIT",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
}
}