-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.15 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
{
"name": "@daeinc/timeline",
"version": "0.5.2",
"description": "A wrapper class on top of keyframes package",
"type": "module",
"types": "./dist/index.d.ts",
"main": "./dist/index.js",
"files": [
"/dist"
],
"staticFiles": {
"staticPath": "./demo/static"
},
"scripts": {
"watch": "tsc --watch",
"test": "vitest",
"demo": "parcel ./demo/demo.html --dist-dir ./demo/build/ --no-cache",
"build": "tsc --noemit && tsup"
},
"author": "Daeinc",
"license": "MIT",
"dependencies": {
"@daeinc/keyframes": "^0.1.0"
},
"devDependencies": {
"@daeinc/array": "^0.6.1",
"@daeinc/math": "^0.6.0",
"@parcel/config-default": "^2.8.3",
"parcel": "^2.8.3",
"parcel-reporter-static-files-copy": "^1.5.0",
"tsup": "^6.6.3",
"typescript": "^4.9.5",
"vitest": "^0.29.1"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cdaein/timeline.git"
},
"bugs": {
"url": "https://github.com/cdaein/timeline/issues"
},
"homepage": "https://github.com/cdaein/timeline#readme"
}