-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.34 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
{
"name": "@galacean/effects-specification",
"version": "2.1.0",
"description": "Galacean Effects JSON Specification",
"module": "./es/index.js",
"main": "./es/index.js",
"types": "./es/index.d.ts",
"files": [
"es"
],
"exports": {
".": {
"import": "./es/index.js",
"require": "./es/index.js",
"types": "./es/index.d.ts"
}
},
"scripts": {
"prebuild": "pnpm clean",
"build": "pnpm build:lib",
"build:lib": "tsc -b tsconfig.build.json",
"lint": "eslint src --ext .ts,.mjs",
"lint:fix": "eslint src --fix --quiet --ext .ts,.mjs",
"check:ts": "tsc -b tsconfig.check.json",
"clean": "rimraf es/**",
"prepare": "husky install",
"prepublishOnly": "npm run build"
},
"browserslist": [
"iOS 9"
],
"devDependencies": {
"@commitlint/cli": "^13.2.1",
"@commitlint/config-conventional": "^18.4.3",
"@typescript-eslint/eslint-plugin": "^7.7.0",
"@typescript-eslint/parser": "^7.7.0",
"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": "^3.0.2",
"typescript": "^5.3.3"
},
"author": "Ant Group CO., Ltd.",
"license": "MIT",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
}
}