-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.3 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.3 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
{
"name": "sciux-laplace",
"type": "module",
"version": "0.0.2",
"description": "Sciux Laplace: AI-naive DSL renderer",
"exports": {
".": {
"dev": "./src/index.ts",
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./parser": {
"dev": "./src/parser.ts",
"types": "./dist/parser.d.ts",
"import": "./dist/parser.js"
},
"./selector": {
"dev": "./src/selector.ts",
"types": "./dist/selector.d.ts",
"import": "./dist/selector.js"
}
},
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"publish": "npm run build && npm publish",
"build": "tsup",
"dev": "tsup --watch",
"devTest": "concurrently --kill-others --hide 0 -- \"tsup --watch\" \"vite test\"",
"lint": "eslint ."
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@vue/reactivity": "^3.5.13",
"@vue/shared": "^3.5.13",
"@xmldom/xmldom": "^0.9.8",
"arktype": "^2.1.20",
"clsx": "^2.1.1",
"css-what": "^6.1.0",
"morphdom": "^2.7.4",
"parse-entities": "^4.0.2",
"xpath": "^0.0.34"
},
"devDependencies": {
"@antfu/eslint-config": "^2.27.3",
"concurrently": "^9.1.2",
"eslint": "9.9.0",
"tsup": "^8.3.6",
"typescript": "^5.7.3",
"vite": "^6.3.5"
}
}