-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 854 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 854 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
{
"name": "@hostlink/light",
"version": "3.2.8",
"type": "module",
"files": [
"dist"
],
"repository": {
"url": "https://github.com/HostLink/light"
},
"main": "./dist/light.umd.cjs",
"module": "./dist/light.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/light.js"
}
},
"scripts": {
"dev": "vite --host",
"build": "tsc && vite build",
"preview": "vite preview",
"release": "git push --follow-tags",
"test": "vitest run",
"test:watch": "vitest"
},
"devDependencies": {
"typescript": "^5.8.3",
"vite": "^7.2.1",
"vite-plugin-dts": "^4.5.4",
"vitest": "^4.0.7"
},
"dependencies": {
"axios": "^1.11.0",
"collect.js": "^4.36.1",
"defu": "^6.1.4",
"json-to-graphql-query": "^2.3.0"
}
}