-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 2.05 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
{
"name": "armtee",
"type": "module",
"version": "0.0.2",
"description": "Line oriented micro templating tool",
"keywords": [
"micro",
"template",
"engine",
"template engine",
"micro templating",
"embedded template engine"
],
"homepage": "https://aklaswad.github.io/armtee/",
"bugs": "https://github.com/aklaswad/armtee/issues",
"repository": "github:aklaswad/armtee",
"bin": {
"armtee": "./bin/cli.js"
},
"main": "./dist/index.umd.cjs",
"module": "./dist/index.js",
"types": "./types/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.umd.cjs"
}
},
"files": [
"dist",
"src",
"types"
],
"scripts": {
"build": "rm -rf ./public && vite build",
"build:cli": "npx tsc src/cli.ts --outDir dist/ --module node16",
"build:types": "npx tsc src/* --outDir dist --declarationDir ./types --declaration --emitDeclarationOnly",
"coverage": "vitest run --coverage",
"try": "node test.js",
"test": "npx vitest run --globals --reporter verbose",
"test:ci": "vitest run --globals --reporter verbose --coverage.enabled --coverage.reporter='json'",
"site-dev": "vite -c vite.config.site.js",
"site-build": "npm run build && node site/build.js && vite build -c vite.config.site.js",
"publish": "npm run build && npm publish"
},
"author": "Akira Sawada",
"license": "MIT",
"devDependencies": {
"@monaco-editor/loader": "^1.3.2",
"@types/yargs": "^17.0.23",
"@vitest/coverage-c8": "^0.29.7",
"@vitest/ui": "^0.29.3",
"istanbul-badges-readme": "^1.8.5",
"markdown-it": "^13.0.1",
"markdown-it-anchor": "^8.6.7",
"markdown-it-attrs": "^4.1.6",
"markdown-it-table-of-contents": "^0.6.0",
"marx-css": "^4.0.1",
"mock-stdin": "^1.0.0",
"monaco-editor": "^0.36.1",
"tmp": "^0.2.1",
"typedoc": "^0.23.26",
"typescript": "^4.9.5",
"vite": "^4.1.2",
"vitest": "^0.29.1",
"vitest-mock-process": "^1.0.4",
"yaml": "^2.2.1"
},
"dependencies": {
"yargs": "^17.7.1"
}
}