-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.05 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.05 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
{
"name": "vtyx",
"version": "4.4.3",
"description": "VueJS 3.x with Typescript & JSX",
"main": "dist/vtyx.common.js",
"module": "dist/vtyx.esm.js",
"types": "types/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/intersec/vtyx.git"
},
"author": "Intersec",
"license": "MIT",
"bugs": {
"url": "https://github.com/intersec/vtyx/issues"
},
"homepage": "https://github.com/intersec/vtyx#readme",
"scripts": {
"build": "npm run build:ts && npm run build:bundle",
"build:ts": "tsc -p .",
"build:bundle": "rollup -c",
"test": "npm run test:tape && npm run test:eslint",
"test:tape": "tape test/*",
"test:eslint": "eslint test/*"
},
"dependencies": {
"vue": "^3.5.21",
"vue-class-component": "8.0.0-rc.1",
"vue-property-decorator": "10.0.0-rc.3"
},
"devDependencies": {
"eslint": "^8.57.1",
"rollup": "2.79.2",
"tape": "^5.9.0",
"typescript": "~5.9"
}
}