-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
60 lines (60 loc) · 1.42 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
{
"name": "gifken",
"version": "3.0.4",
"description": "JavaScript library that can reverse and split animated GIFs",
"type": "commonjs",
"main": "./dist/node.js",
"module": "./dist/gifken.mjs",
"exports": {
".": {
"import": "./dist/gifken.mjs",
"require": "./dist/node.js"
}
},
"types": "./dist/gifken.d.ts",
"scripts": {
"wasm": "npm --prefix \"crate\" run build",
"predev": "npm run wasm",
"dev": "vite",
"build": "run-s clean wasm build:web build:nodejs",
"build:web": "vite build",
"build:nodejs": "tsc ./src/node.ts --module commonjs --outDir dist --target es2017",
"clean": "rimraf dist crate/nodejs crate/web crate/target",
"lint": "xo",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "https://github.com/aaharu/gifken.git"
},
"author": "aaharu",
"license": "MIT",
"bugs": {
"url": "https://github.com/aaharu/gifken/issues"
},
"engines": {
"node": ">=14"
},
"devDependencies": {
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2",
"typescript": "^4.8.3",
"vite": "^3.1.0",
"vite-plugin-dts": "^1.5.0",
"xo": "^0.52.3"
},
"files": [
"dist/*.ts",
"dist/*.js",
"dist/*.mjs",
"crate/nodejs"
],
"keywords": [
"animated-gif",
"gif"
]
}