-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.12 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
{
"name": "@tooooools/utils",
"version": "1.4.3",
"description": "Various Toools™ utils",
"type": "module",
"author": "Arnaud Juracek",
"license": "MIT",
"scripts": {
"build": "vite build",
"build:watch": "vite build --mode dev",
"preversion": "npm run build && git add -f dist",
"postversion": "git push && git push --tags && npm publish --access public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tooooools/utils.git"
},
"files": [
"dist"
],
"main": "./dist/index.js",
"module": "./dist/index.umd.cjs",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.umd.cjs"
}
},
"devDependencies": {
"eslint": "^8.36.0",
"eslint-config-standard": "^17.0.0",
"eslint-config-standard-jsx": "^11.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.6.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.32.2",
"ghp": "^1.7.0",
"vite": "^4.2.1"
},
"dependencies": {
"eases": "^1.0.8",
"missing-math": "^3.4.0",
"transformation-matrix": "^2.15.0"
}
}