-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
65 lines (65 loc) · 1.94 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
{
"name": "hxg",
"private": false,
"version": "0.4.9",
"repository": "https://github.com/hxg2050/hxg.git",
"type": "module",
"main": "./dist/index.cjs.js",
"module": "./dist/index.esm.js",
"types": "./types/src/index.d.ts",
"files": [
"dist/",
"types/",
"jsx-runtime/dist/",
"jsx-runtime/package.json"
],
"exports": {
".": {
"types": "./types/src/index.d.ts",
"import": "./dist/index.esm.js",
"require": "./dist/index.cjs.js"
},
"./jsx-runtime": {
"types": "./types/jsx-runtime/src/index.d.ts",
"import": "./jsx-runtime/dist/index.esm.js",
"require": "./jsx-runtime/dist/index.cjs.js"
}
},
"license": "MIT",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"docs:dev": "vitepress dev docs",
"docs:build": "yarn typedoc:build && vitepress build docs",
"docs:preview": "vitepress preview docs",
"typedoc:build": "tsc --project ./typedoc/tsconfig.json && node --experimental-specifier-resolution=node ./typedoc/dist/doc.js",
"core:build": "tsc && rollup -c",
"doc": "yarn typedoc:build && yarn docs:dev",
"babel:build": "babel ./src --out-dir lib --extensions .ts,.tsx"
},
"devDependencies": {
"@algolia/client-search": "^4.17.0",
"@rollup/plugin-commonjs": "^24.1.0",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-typescript": "^11.0.0",
"@types/node": "^18.15.11",
"@typescript-eslint/eslint-plugin": "^5.57.1",
"@typescript-eslint/parser": "^5.57.1",
"eslint": "^8.37.0",
"rollup-plugin-copy": "^3.4.0",
"sass": "^1.56.1",
"ts-node": "^10.9.1",
"tslib": "^2.5.0",
"typedoc": "^0.23.23",
"typedoc-plugin-markdown": "^3.14.0",
"typescript": "^5.0.3",
"vite": "^4.2.1",
"vite-plugin-babel": "^1.1.3",
"vitepress": "^1.0.0-alpha.63"
},
"dependencies": {
"@tweenjs/tween.js": "^18.6.4",
"eventemitter3": "^5.0.0"
}
}