-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
87 lines (87 loc) · 2.29 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "@sister.software/typescript-esm-packager",
"version": "1.2.10",
"description": "A collection of tools to build ESM packages with TypeScript.",
"repository": "[email protected]:sister-software/typescript-esm-packager.git",
"homepage": "https://github.com/sister-software/typescript-esm-packager#readme",
"bugs": {
"url": "https://github.com/sister-software/typescript-esm-packager/issues"
},
"author": "Teffen Ellis <[email protected]>",
"license": "MIT",
"main": "./dist/mod.mjs",
"module": "./dist/mod.mjs",
"types": "./dist/mod.d.mts",
"files": [
"dist/**/*"
],
"keywords": [
"typescript",
"transformer",
"ast",
"path",
"rewrite",
"esm",
"module"
],
"exports": {
"./package.json": "./package.json",
".": {
"import": "./dist/mod.mjs",
"types": "./dist/mod.d.mts"
},
"./mod": {
"import": "./dist/mod.mjs",
"types": "./dist/mod.d.mts"
},
"./mod.mjs": {
"import": "./dist/mod.mjs",
"types": "./dist/mod.d.mts"
}
},
"type": "module",
"scripts": {
"build": "node --no-warnings --experimental-specifier-resolution=node --loader ts-node/esm ./_build.mts",
"release": "yarn run build && yarn run release-it"
},
"devDependencies": {
"@sister.software/eslint-config": "^2.0.1",
"@sister.software/prettier-config": "^2.0.1",
"@types/node": "^18.15.10",
"@types/prettier": "^2.7.2",
"@typescript-eslint/eslint-plugin": "^5.57.0",
"@typescript-eslint/parser": "^5.57.0",
"eslint": "^8.36.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-header": "^3.1.1",
"prettier": "^2.8.7",
"prettier-plugin-organize-imports": "^3.2.2",
"release-it": "^15.9.3",
"ts-node": "^10.9.1",
"typescript": "^5.0.2"
},
"peerDependencies": {
"typescript": ">=5"
},
"optionalDependencies": {
"@sister.software/prettier-config": "^2.0.1",
"prettier": "^2.8",
"prettier-plugin-organize-imports": "^3.2.2"
},
"engines": {
"node": ">=16.14"
},
"prettier": "@sister.software/prettier-config",
"eslintConfig": {
"extends": [
"@sister.software/eslint-config"
],
"ignorePatterns": [
"dist",
"results",
"node_modules",
"test/fixtures"
]
},
"packageManager": "[email protected]"
}