-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 2.1 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "@bsmth/sequence-loader",
"version": "1.2.0",
"description": "Streamlined sprite animation packing for webpack.",
"main": "dist/cjs/loader.js",
"module": "dist/esm/loader.js",
"repository": "github:project-bismuth/sequence-loader",
"author": "johh <[email protected]>",
"license": "MIT",
"private": false,
"sideEffects": false,
"keywords": [
"image",
"sequence",
"sprite",
"spritesheet",
"atlas",
"flipbook",
"animation"
],
"scripts": {
"build": "rollup -c",
"type-check": "tsc --noEmit",
"dev": "rollup -c -w",
"update-schema": "ts-node ./scripts/update-schema.ts",
"lint": "eslint --ext .ts,.tsx,.js src/",
"prepare": "husky install"
},
"devDependencies": {
"@babel/cli": "^7.14.3",
"@babel/core": "^7.14.3",
"@babel/eslint-parser": "^7.14.4",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/plugin-proposal-object-rest-spread": "^7.14.4",
"@babel/preset-env": "^7.14.4",
"@babel/preset-typescript": "^7.13.0",
"@types/buffer-xor": "^2.0.0",
"@types/glob": "^7.1.3",
"@types/loader-utils": "^2.0.2",
"@types/node": "^16.3.2",
"@types/sharp": "^0.28.3",
"@typescript-eslint/eslint-plugin": "^4.26.0",
"@typescript-eslint/parser": "^4.26.0",
"eslint": "^7.27.0",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^7.0.1",
"lint-staged": "^11.0.0",
"rollup": "^2.50.6",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.30.0",
"ts-json-schema-generator": "^0.94.1",
"ts-node": "^10.0.0",
"tslib": "^2.2.0",
"typescript": "^4.3.2",
"webpack": "^5.38.1"
},
"dependencies": {
"@bsmth/loader-cache": "^1.0.1",
"@bsmth/loader-progress": "^1.1.0",
"chalk": "^4.1.1",
"glob": "^7.1.7",
"glob-promise": "^4.2.0",
"loader-utils": "^2.0.0",
"maxrects-packer": "^2.7.2",
"schema-utils": "^3.0.0",
"sharp": "^0.28.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx,js}": "eslint --max-warnings 1"
}
}