-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 895 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
{
"name": "@disorrder/screw",
"description": "Light-weight library for animating stuff, inspired by Tween and animejs",
"version": "2.0.0-rc.6",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"test": "yarn build && jest",
"prepack": "echo 'TODO: build, test'"
},
"devDependencies": {
"@types/jest": "^29.2.1",
"jest": "^29.2.2",
"ts-jest": "^29.0.3",
"typescript": "^4.8.4",
"vite": "^3.2.2",
"vite-plugin-dts": "^1.6.6"
},
"files": [
"dist",
"plugins"
],
"main": "./dist/screw.umd.js",
"module": "./dist/screw.es.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/screw.es.js",
"require": "./dist/screw.umd.js"
}
},
"jest": {
"verbose": true,
"transform": {
"^.+\\.(js|ts)$": "ts-jest"
}
}
}