-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.35 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-transformer-classname",
"description": "A TypeScript transformer for use with ttypescript that will give you a symbol that returns the name of the class.",
"version": "2.0.0",
"author": "Benjamin Chardin <[email protected]> (https://coreoz.com)",
"repository": "https://github.com/Coreoz/ts-transformer-classname",
"homepage": "https://github.com/Coreoz/ts-transformer-classname",
"keywords": [
"customTransformer",
"classname",
"ts-transformer"
],
"license": "Apache-2.0",
"main": "build/cjs/index.js",
"typings": "build/esm/index.d.ts",
"module": "build/esm/index.js",
"dependencies": {
"@wessberg/di-compiler": "^2.2.6"
},
"peerDependencies": {
"plume-ts-di": "^1.0.2",
"typescript": "^4.1.3"
},
"devDependencies": {
"plume-ts-di": "^1.0.2",
"release-it": "^14.2.2",
"typescript": "^4.1.3"
},
"files": [
"build/**/*.*"
],
"scripts": {
"build": "yarn tsc:cjs && yarn tsc:esm",
"tsc:cjs": "tsc --module commonjs --outDir build/cjs -p tsconfig.json",
"tsc:esm": "tsc --module esnext --outDir build/esm -p tsconfig.json",
"clean": "rm -rf build",
"prepare-release": "yarn clean && yarn build",
"release": "release-it"
},
"release-it": {
"hooks": {
"before:init": [
"yarn prepare-release"
]
}
},
"packageManager": "[email protected]"
}