-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.12 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
{
"name": "@dolanske/cascade",
"type": "module",
"version": "2.5.2",
"private": false,
"description": "Write reactive UI components using render functions.",
"author": "dolanske",
"license": "GPL-3.0",
"repository": {
"type": "git",
"url": "https://github.com/dolanske/cascade.git"
},
"keywords": [
"javascript",
"typescript",
"UI framework",
"UI Components",
"framework",
"render function",
"vue",
"react"
],
"exports": {
".": {
"import": "./dist/index.js"
}
},
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"typings": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"dependencies": {
"@vue/reactivity": "^3.5.6",
"csstype": "^3.1.3"
},
"devDependencies": {
"@antfu/eslint-config": "^3.6.2",
"@types/node": "^22.5.5",
"eslint": "^9.10.0",
"typescript": "^5.6.2",
"vite": "^5.4.6",
"vite-plugin-dts": "^4.2.1"
}
}