-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
74 lines (74 loc) · 2.01 KB
/
package.json
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
{
"name": "vite-plugin-stache",
"version": "1.1.0",
"description": "",
"type": "commonjs",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.mjs",
"types": "types/index.d.ts",
"exports": {
"import": "./dist/esm/index.mjs",
"require": "./dist/cjs/index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/pYr0x/vite-plugin-stache.git"
},
"engines": {
"node": ">= 14.18.0"
},
"scripts": {
"dev": "tsc -p . -w --incremental",
"build": "rollup -c --bundleConfigAsCjs",
"format": "",
"lint": "",
"prepare": "npm run build",
"version:patch": "npm version patch",
"version:minor": "npm version minor",
"version:major": "npm version major",
"postversion": "cross-var git push --atomic origin master v$npm_package_version",
"test": "vitest run --reporter=dot --coverage",
"test:ui": "vitest --ui",
"test:watch": "vitest --watch"
},
"author": "Julian Kern",
"license": "MIT",
"dependencies": {
"can-stache-ast": "^1.1.0",
"stache-inline-transformer": "^0.0.2"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^24.0.0",
"@rollup/plugin-typescript": "^10.0.1",
"@types/node": "^18.11.17",
"@vitest/coverage-c8": "^0.25.8",
"@vitest/ui": "^0.25.8",
"c8": "^7.12.0",
"can-import-module": "^1.3.0",
"can-stache": "^5.1.1",
"can-stache-bindings": "^5.0.5",
"can-stache-element": "^1.2.0",
"can-view-import": "^5.0.1",
"can-view-scope": "^4.13.7",
"cross-var": "^1.1.0",
"eslint": "^8.30.0",
"jsdom": "^20.0.3",
"pptr-testing-library": "^0.7.0",
"prettier": "^2.8.1",
"puppeteer": "^19.4.1",
"rollup": "^3.7.5",
"ts-node": "^10.9.1",
"tslib": "^2.4.1",
"typescript": "^4.9.4",
"vite": "^4.0.2",
"vite-plugin-stache": "link:",
"vitest": "^0.25.8"
},
"peerDependencies": {
"can-stache": "^5.1.1",
"can-stache-bindings": "^5.0.5",
"can-view-import": "^5.0.1",
"can-view-scope": "^4.13.7",
"vite": "2.7 - 4"
}
}