-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 869 Bytes
/
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
{
"name": "animate.ts",
"version": "0.0.6",
"description": "animate.ts is an animation library for Typescript.",
"keywords": [
"animate",
"animation",
"typescript"
],
"author": {
"name": "星如雨",
"email": "[email protected]",
"url": "https://github.com/xing403"
},
"repository": {
"type": "git",
"url": "https://github.com/xing403/animate.ts"
},
"type": "module",
"main": "dist/index.js",
"module": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist",
"global.d.ts"
],
"scripts": {
"build": "tsc -p ."
},
"devDependencies": {
"typescript": "^5.2.2"
},
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./package.json": "./package.json",
"./global.d.ts": "./global.d.ts",
"./dist/*": "./dist/*"
}
}