-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.25 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
{
"name": "@handlebars-ng/runner",
"type": "module",
"version": "0.0.1",
"license": "MIT",
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts",
"require": "./dist/index.cjs"
}
},
"scripts": {
"build": "vite build",
"perf": "vite-node src/performance-test.ts",
"dev": "concurrently -k npm:dev:*",
"dev:build": "vite build --watch",
"dev:types": "tsc --watch",
"dev:unit": "vitest --ui",
"test": "concurrently --kill-others-on-fail npm:test:*",
"test:types": "tsc --build",
"test:unit": "vitest --run",
"---- lerna tasks ----": "",
"build:watch": "vite build --watch",
"test-and-build": "yarn test && yarn build",
"clean": "rm dist dist-node -rf"
},
"devDependencies": {
"@handlebars-ng/eslint-plugin": "0.0.1",
"@handlebars-ng/parser": "0.0.1",
"@handlebars-ng/specification": "0.0.1",
"@vitest/ui": "0.34.6",
"assemblyscript": "0.27.10",
"handlebars": "4.7.8",
"typescript": "5.2.2",
"vite": "4.4.9",
"vite-plugin-dts": "3.6.0",
"vitest": "0.34.6"
},
"dependencies": {
"@handlebars-ng/abstract-syntax-tree": "0.0.1"
}
}