-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.5 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.5 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
{
"name": "dust",
"type": "module",
"types": "./src/index.ts",
"description": "A minimalistic reactive Javascript library for building dynamic state component-based interfaces.",
"version": "1.0.0",
"license": "MIT",
"author": "Paul Engel",
"homepage": "https://github.com/archan937/dust",
"repository": {
"type": "git",
"url": "git@github.com:archan937/dust.git"
},
"bugs": {
"url": "https://github.com/archan937/dust/issues"
},
"keywords": [
"reactive",
"components",
"jsx",
"usestate",
"styled",
"minimalistic",
"bun",
"esbuild"
],
"bin": {
"dust": "./bin/dust"
},
"scripts": {
"format": "prettier --write .",
"lint": "eslint .",
"quality": "bun typecheck && bun format && bun lint && bun test:coverage",
"test:coverage": "bun test --coverage",
"test": "bun test",
"typecheck": "tsc"
},
"dependencies": {
"@babel/plugin-transform-react-jsx": "^7.27.1",
"@babel/plugin-transform-typescript": "^7.27.1",
"@babel/standalone": "^7.27.6",
"chalk": "^5.4.1",
"esbuild": "^0.27.3",
"glob": "^11.0.3"
},
"devDependencies": {
"@eslint/js": "^9.11.1",
"@types/babel__standalone": "^7.1.9",
"@types/bun": "^1.1.10",
"eslint": "^9.11.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-simple-import-sort": "^12.1.1",
"globals": "^15.10.0",
"happy-dom": "^20.8.3",
"prettier": "^3.3.3",
"typescript-eslint": "^8.8.0"
}
}