-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.31 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
{
"type": "module",
"name": "templl",
"version": "0.0.3",
"author": "Vlad Pronsky <[email protected]>",
"repository": "vladkens/templl",
"description": "Project scaffolding from template repo",
"license": "MIT",
"keywords": [
"boilerplate",
"cli",
"command-line",
"generate",
"generator",
"git",
"module",
"npx",
"scaffold",
"scaffolding",
"template",
"yeoman"
],
"files": [
"dist"
],
"scripts": {
"build": "rm -rf dist && pkgroll --minify && ls -lah dist",
"test": "uvu -r tsm src '\\.test\\.ts$'",
"test-cov": "c8 --include=src yarn test",
"test-watch": "watchexec -c -e ts 'clear && yarn test'",
"format": "prettier --write .",
"ci": "yarn test-cov && yarn build"
},
"dependencies": {},
"devDependencies": {
"@types/node": "^20.3.1",
"c8": "^7.14.0",
"pkgroll": "^1.10.0",
"prettier": "^2.8.8",
"prettier-plugin-organize-imports": "^3.2.2",
"ts-node": "^10.9.1",
"tsm": "^2.3.0",
"typescript": "^5.0.4",
"uvu": "^0.5.6"
},
"types": "./dist/main.d.cts",
"exports": {
"require": {
"types": "./dist/main.d.cts",
"default": "./dist/main.cjs"
},
"import": {
"types": "./dist/main.d.mts",
"default": "./dist/main.mjs"
}
},
"bin": "./dist/cli.js"
}