-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
107 lines (107 loc) · 3.17 KB
/
package.json
File metadata and controls
107 lines (107 loc) · 3.17 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "@volverjs/ai",
"type": "module",
"version": "0.0.0",
"packageManager": "pnpm@9.11.0",
"description": "Hugging Face Transformers.js wrapper for on-device AI with web-workers",
"author": "8 Wave S.r.l.",
"license": "MIT",
"homepage": "https://github.com/volverjs/ai",
"repository": {
"type": "git",
"url": "https://github.com/volverjs/ai"
},
"bugs": {
"url": "https://github.com/volverjs/ai/issues"
},
"keywords": [
"ai",
"Transformers.js",
"web workers"
],
"sideEffects": false,
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./src/*": "./src/*",
"./dist/*": "./dist/*",
"./vue": {
"types": "./dist/vue/index.d.ts",
"import": "./dist/vue/index.js"
}
},
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"typesVersions": {
"*": {
"*": [
"dist/index.d.ts"
],
"vue": [
"dist/vue/index.d.ts"
]
}
},
"files": [
"*.d.ts",
"dist",
"src"
],
"engines": {
"node": ">= 16.x"
},
"scripts": {
"lint": "eslint",
"lint:fix": "eslint --fix",
"type-check": "tsc --noEmit",
"dev": "vite build --watch",
"dev:docs": "vite --config vite.config.docs.ts",
"build": "vite build && vue-tsc --declaration --emitDeclarationOnly -p tsconfig.vue-tsc.json && copy src/**/*.d.ts dist",
"build:docs": "vite build --config vite.config.docs.ts",
"preview:docs": "vite preview --config vite.config.docs.ts",
"test": "pnpm run test-vitest",
"test-vitest": "vitest run",
"test-vitest-watch": "vitest",
"credits": "npx @opengovsg/credits-generator"
},
"optionalDependencies": {
"vue": "^3.5.10"
},
"devDependencies": {
"@antfu/eslint-config": "^3.9.1",
"@nabla/vite-plugin-eslint": "^2.0.4",
"@types/node": "^22.9.0",
"@types/prismjs": "^1.26.5",
"@unhead/vue": "^1.11.11",
"@vitejs/plugin-vue": "^5.2.0",
"@vitest/web-worker": "^2.1.5",
"@volverjs/style": "0.1.12-beta.20",
"@volverjs/ui-vue": "0.0.10-beta.47",
"@vue/test-utils": "^2.4.6",
"@vueuse/core": "^11.2.0",
"@xenova/transformers": "^2.17.2",
"copy": "^0.3.2",
"eslint": "^9.39.2",
"globals": "^15.12.0",
"happy-dom": "^20.8.9",
"markdown-it": "^14.1.1",
"markdown-it-anchor": "^9.2.0",
"markdown-it-prism": "^2.3.0",
"prismjs": "^1.30.0",
"sass-embedded": "^1.81.0",
"typescript": "^5.6.3",
"unplugin-vue-router": "^0.10.8",
"vite": "^5.4.20",
"vite-plugin-markdown": "^2.2.0",
"vite-plugin-stylelint": "^5.3.1",
"vite-plugin-vue-layouts": "^0.11.0",
"vitest": "^2.1.9",
"vue-prism-editor": "2.0.0-alpha.2",
"vue-router": "^4.4.5",
"vue-tsc": "^2.1.10",
"yaml": "^2.8.3"
}
}