-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.41 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
{
"name": "ts-writer",
"version": "1.3.1",
"description": "Ts Writer is a simple and lightweight library to generate js and dts files using template strings.",
"homepage": "https://github.com/kitajs/ts-writer#README",
"bugs": "https://github.com/kitajs/ts-writer/issues",
"repository": {
"type": "git",
"url": "git+https://github.com/kitajs/ts-writer.git"
},
"license": "MIT",
"author": "Arthur Fiorette <[email protected]>",
"sideEffects": false,
"main": "dist/index.js",
"module": "dist/index.mjs",
"source": "src/index.ts",
"types": "dist/index.d.ts",
"files": [
"dist",
"src",
"LICENSE",
"README.md"
],
"scripts": {
"build": "microbundle --tsconfig tsconfig.build.json --target node --compress -f esm,cjs",
"format": "prettier --write .",
"test": "c8 --reporter lcov --reporter text node --trace-warnings --require @swc-node/register --test test/*.test.ts"
},
"dependencies": {
"json-stable-stringify": "^1.0.2",
"tslib": "^2.6.2"
},
"devDependencies": {
"@arthurfiorette/prettier-config": "^1.0.12",
"@swc-node/register": "^1.6.8",
"@swc/helpers": "^0.5.3",
"@types/json-stable-stringify": "^1.0.35",
"@types/node": "^20.0.0",
"c8": "^8.0.1",
"microbundle": "0.15.1",
"prettier": "^3.0.3",
"source-map-support": "^0.5.21"
},
"peerDependencies": {
"typescript": "^5.2.2"
},
"packageManager": "[email protected]"
}