-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.39 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
{
"name": "solid-spinner",
"version": "0.2.0",
"description": "Pure SVG loading spinners for SolidJS",
"main": "./dist/index.cjs",
"scripts": {
"test": "vitest",
"build": "tsup",
"lint": "eslint src/** --fix"
},
"keywords": [
"solid",
"solidjs",
"spinner",
"loading",
"svg"
],
"author": "Leonard Kioi",
"license": "MIT",
"peerDependencies": {
"solid-js": "*"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.45.1",
"@typescript-eslint/parser": "^5.45.1",
"eslint": "^8.29.0",
"jsdom": "^20.0.3",
"rollup-preset-solid": "^2.0.1",
"solid-js": "latest",
"solid-testing-library": "^0.5.0",
"tsup": "^7.2.0",
"tsup-preset-solid": "^2.1.0",
"typescript": "^4.9.3",
"vite": "^3.2.4",
"vite-plugin-solid": "^2.4.0",
"vitest": "^0.25.3"
},
"engines": {
"node": ">=16"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lenniezelk/solid-spinner.git"
},
"files": [
"README.md",
"LICENSE",
"dist/**/*"
],
"types": "./dist/index.d.ts",
"module": "./dist/index.js",
"exports": {
"solid": "./dist/index.jsx",
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
},
"browser": {},
"typesVersions": {}
}