-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
96 lines (96 loc) · 2.46 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
96
{
"name": "supplejs",
"description": "SuppleJS is a toy project to re-implement SolidJS from scratch",
"version": "1.3.1",
"author": {
"name": "Delphin Barraud"
},
"license": "MIT",
"keywords": [
"reactivity",
"fine-grained",
"jsx",
"declarative",
"ui"
],
"repository": {
"type": "git",
"url": "https://github.com/delph123/supplejs.git"
},
"private": "true",
"homepage": "https://delph123.github.io/supplejs/",
"main": "./src/core/index.ts",
"type": "module",
"packageManager": "pnpm@9.4.0",
"prettier": {
"editorconfig": true
},
"publishConfig": {
"directory": "build",
"provenance": true
},
"clean-package": {
"main": "./lib/index.js",
"types": "./lib/index.d.js",
"exports": {
".": {
"import": "./lib/index.js",
"types": "./lib/index.d.ts",
"default": "./lib/index.js"
},
"./jsx-runtime": {
"import": "./lib/jsx-runtime.js",
"types": "./lib/jsx-runtime.d.ts",
"default": "./lib/jsx-runtime.js"
},
"./jsx-dev-runtime": {
"import": "./lib/jsx-runtime.js",
"types": "./lib/jsx-runtime.d.ts",
"default": "./lib/jsx-runtime.js"
}
},
"delete": [
"clean-package",
"private",
"publishConfig"
],
"scripts": {},
"dependencies": {
"csstype": "^3.1.3"
},
"devDependencies": {}
},
"scripts": {
"dev": "vite",
"build": "tsc && vite build && shx cp dist/index.html dist/404.html",
"test": "vitest",
"doc": "typedoc",
"coverage": "vitest run --coverage",
"lint": "tsc && eslint src --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"prepack": "shx rm -rf build",
"prepare": "tsc -p tsconfig.release.json && node scripts/prepare-release.js"
},
"devDependencies": {
"@testing-library/dom": "^10.3.2",
"@testing-library/jest-dom": "^6.4.6",
"@typescript-eslint/eslint-plugin": "^7.16.1",
"@typescript-eslint/parser": "^7.16.1",
"@vitest/coverage-v8": "^2.0.3",
"eslint": "^8.57.0",
"eslint-plugin-jest-dom": "^5.4.0",
"eslint-plugin-testing-library": "^6.2.2",
"jsdom": "^24.1.0",
"prettier": "^3.3.3",
"shx": "^0.3.4",
"supplejs-testing-library": "^1.1.0",
"typedoc": "^0.26.4",
"typescript": "^5.5.3",
"vite": "^5.3.4",
"vitest": "^2.0.3"
},
"dependencies": {
"csstype": "^3.1.3",
"rainbow-gradient": "^1.0.0"
}
}