generated from forge42dev/open-source-stack
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
95 lines (95 loc) · 2.65 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "vite-plugin-icons-spritesheet",
"version": "2.2.1",
"description": "Vite plugin that generates a spritesheet and types out of your icons folder.",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.mts",
"keywords": [
"icons",
"spritesheet",
"vite",
"plugin",
"generator",
"react",
"angular",
"vue",
"remix"
],
"exports": {
".": {
"import": {
"import": "./dist/index.mjs",
"default": "./dist/index.mjs",
"types": "./dist/index.d.mts"
},
"require": {
"import": "./dist/index.js",
"require": "./dist/index.js",
"default": "./dist/index.js",
"types": "./dist/index.d.ts"
}
}
},
"scripts": {
"test": "vitest run",
"test:cov": "vitest run --coverage",
"build": "tsup src/index.ts --dts --format esm,cjs --outDir dist --clean",
"remix:dev": "npm run dev -w test-apps/remix-vite",
"remix:cjs:dev": "npm run dev -w test-apps/remix-vite-cjs",
"build:dev": "tsup src/index.ts --dts --format cjs,esm --outDir dist",
"build:dev:watch": "npm run build:dev -- --watch",
"build:dev:cjs:watch": "npm run build:dev -- --watch",
"dev": "npm-run-all -s build:dev -p remix:dev build:dev:watch",
"dev:cjs": "npm-run-all -s build:dev -p remix:cjs:dev build:dev:cjs:watch",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix",
"prepublishOnly": "npm run build",
"tsc": "tsc",
"validate": "npm run lint && npm run tsc && npm run test",
"prepare": "husky"
},
"author": "",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/forge42dev/vite-plugin-icons-spritesheet.git"
},
"bugs": {
"url": "https://github.com/forge42dev/vite-plugin-icons-spritesheet/issues"
},
"files": [
"dist"
],
"workspaces": [
".",
"test-apps/*"
],
"homepage": "https://github.com/forge42dev/vite-plugin-icons-spritesheet#readme",
"dependencies": {
"@biomejs/js-api": "^0.6.2",
"@biomejs/wasm-nodejs": "^1.8.3",
"chalk": "^4.1.2",
"glob": "^10.3.12",
"node-html-parser": "^6.1.13",
"prettier": "^3.3.3"
},
"peerDependencies": {
"vite": ">=5.2.0"
},
"devDependencies": {
"@types/node": "^20.12.7",
"@typescript-eslint/eslint-plugin": "^7.5.0",
"@typescript-eslint/parser": "^7.5.0",
"@vitest/coverage-v8": "^1.5.2",
"eslint": "8.56",
"eslint-plugin-unused-imports": "^3.1.0",
"happy-dom": "^14.7.1",
"husky": "^9.0.11",
"npm-run-all": "^4.1.5",
"tsup": "^8.0.2",
"typescript": "^5.4.5",
"vite": "5.2.11",
"vitest": "^1.5.2"
}
}