-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
115 lines (115 loc) · 4 KB
/
package.json
File metadata and controls
115 lines (115 loc) · 4 KB
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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "@effective/icon",
"version": "0.3.0",
"description": "Compile-time icon toolkit with framework integrations and package-backed icon resolution",
"packageManager": "pnpm@10.33.0",
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./vite-plugin": {
"import": "./dist/plugin.js",
"types": "./dist/plugin.d.ts"
},
"./compile": {
"import": "./dist/compile.js",
"types": "./dist/compile.d.ts"
},
"./runtime": {
"import": "./dist/runtime.js",
"types": "./dist/runtime.d.ts"
}
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsdown",
"build:demo": "node --import tsx scripts/build-demo.ts",
"dev:demo": "node --import tsx scripts/dev-demo.ts",
"dev:demo:react:image": "pnpm --filter @streamline-demo/react-image dev",
"dev:demo:react:mask": "pnpm --filter @streamline-demo/react-mask dev",
"dev:demo:react:svg": "pnpm --filter @streamline-demo/react-svg dev",
"dev:demo:solid:image": "pnpm --filter @streamline-demo/solid-image dev",
"dev:demo:solid:mask": "pnpm --filter @streamline-demo/solid-mask dev",
"dev:demo:solid:svg": "pnpm --filter @streamline-demo/solid-svg dev",
"download:free": "pnpm --filter @icon-pkg/streamline-builder download-all",
"download:set": "pnpm --filter @icon-pkg/streamline-builder download-set",
"publish:new-packs": "./scripts/publish-new-packs.sh",
"release:packs:check": "pnpm --filter @icon-pkg/streamline-builder release-check",
"release:packs:publish": "pnpm --filter @icon-pkg/streamline-builder publish-release",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:browser": "pnpm test:browser:react && pnpm test:browser:solid",
"test:browser:react": "vitest run --config vitest.browser.react.config.ts",
"test:browser:solid": "vitest run --config vitest.browser.solid.config.ts",
"test:browser:update": "pnpm test:browser:react:update && pnpm test:browser:solid:update",
"test:browser:react:update": "vitest run --config vitest.browser.react.config.ts --update",
"test:browser:solid:update": "vitest run --config vitest.browser.solid.config.ts --update",
"test:watch": "vitest",
"sync:streamline": "tsx scripts/sync-streamline.ts",
"validate:packs": "pnpm --filter @icon-pkg/streamline-builder validate-packs",
"release:root:check": "pnpm build && pnpm typecheck && pnpm test && npm --cache .npm-cache-release-root pack --dry-run",
"release:root:publish": "npm --cache .npm-cache-release-root publish --access public",
"prepack": "pnpm build"
},
"keywords": [
"effective",
"icon",
"icons",
"svg",
"vite",
"vite-plugin"
],
"repository": {
"type": "git",
"url": "git+https://github.com/sebastian-software/effective-icon.git"
},
"homepage": "https://github.com/sebastian-software/effective-icon#readme",
"bugs": {
"url": "https://github.com/sebastian-software/effective-icon/issues"
},
"author": "Sebastian Software GmbH, Mainz, Germany",
"license": "MIT",
"engines": {
"node": ">=22.0.0"
},
"peerDependencies": {
"vite": "^8.0.0"
},
"dependencies": {
"esrap": "^2.2.4",
"magic-string": "^0.30.21",
"oxc-parser": "^0.124.0"
},
"devDependencies": {
"@oxc-project/types": "^0.124.0",
"@types/node": "^25.5.0",
"@types/react": "^19.1.13",
"@types/react-dom": "^19.1.9",
"@vitejs/plugin-react": "^5.0.4",
"@vitest/browser-playwright": "^4.1.2",
"@vitest/coverage-v8": "^4.1.2",
"playwright": "^1.55.0",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"solid-js": "^1.9.12",
"tsdown": "^0.21.7",
"tsx": "^4.21.0",
"typescript": "^6.0.2",
"vite": "^8.0.3",
"vite-plugin-solid": "^2.11.11",
"vitest": "^4.1.2"
}
}