-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 972 Bytes
/
package.json
File metadata and controls
45 lines (45 loc) · 972 Bytes
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
{
"name": "@ratiosolver/flick",
"version": "0.2.10",
"type": "module",
"description": "A tiny and focused UI framework designed for clarity and speed",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/ratioSolver/Flick.git"
},
"keywords": [
"ui",
"framework",
"component",
"reactive",
"lightweight"
],
"author": "ratioSolver",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/ratioSolver/Flick/issues"
},
"homepage": "https://github.com/ratioSolver/Flick#readme",
"files": [
"/dist"
],
"scripts": {
"build": "tsc",
"dev": "vite playground"
},
"devDependencies": {
"@types/bootstrap": "^5.2.10",
"jsdom": "^29.1.0",
"typescript": "^6.0.3",
"vite": "^8.0.10"
},
"peerDependencies": {
"bootstrap": "^5.3.8",
"snabbdom": "^3.6.3"
},
"publishConfig": {
"access": "public"
}
}