-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
45 lines (45 loc) · 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
{
"name": "vite-plugin-spritesmith",
"version": "0.1.0",
"description": "vite plugin that converts set of images into sprites",
"main": "dist/index.js",
"module": "dist/index.es.js",
"scripts": {
"build": "rollup -c",
"dev": "rollup -w -c"
},
"files": [
"dist",
"README.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/evont/vite-plugin-spritesmith.git"
},
"keywords": [
"rollup",
"rollup-plugin",
"vite-plugin",
"rollup-plugin-spritesmith",
"spritesmith",
"sprite"
],
"author": "Evont Ng <evontgoh@foxmail.com>",
"license": "ISC",
"dependencies": {
"fs-extra": "^10.0.0",
"gaze": "^1.1.3",
"lodash": "^4.17.21",
"mkdirp": "^1.0.4",
"spritesheet-templates": "^10.5.2",
"spritesmith": "^3.4.0"
},
"devDependencies": {
"@rollup/plugin-typescript": "^8.2.1",
"babel-eslint": "^10.1.0",
"eslint": "^7.27.0",
"rollup": "^2.50.5",
"typescript": "^4.3.2",
"vite": "^2.3.4"
}
}