-
Notifications
You must be signed in to change notification settings - Fork 36
/
package.json
119 lines (119 loc) · 3.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
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"name": "dedent",
"version": "1.5.3",
"description": "A string tag that strips indentation from multi-line strings. ⬅️",
"keywords": [
"dedent",
"tag",
"multi-line string",
"es6"
],
"homepage": "https://github.com/dmnd/dedent",
"bugs": {
"url": "https://github.com/dmnd/dedent/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/dmnd/dedent"
},
"license": "MIT",
"author": {
"name": "Desmond Brand",
"email": "dmnd@desmondbrand.com",
"url": "http://desmondbrand.com"
},
"type": "commonjs",
"exports": {
".": {
"types": {
"import": "./dist/dedent.d.mts",
"require": "./dist/dedent.d.ts"
},
"import": "./dist/dedent.mjs",
"require": "./dist/dedent.js"
}
},
"main": "./dist/dedent.js",
"module": "./dist/dedent.mjs",
"types": "./dist/dedent.d.mts",
"files": [
"dist/",
"macro.js",
"package.json",
"LICENSE.md",
"README.md"
],
"scripts": {
"build": "pnpm build:legacy && pnpm build:modern && pnpm build:types",
"build:legacy": "BABEL_ENV=legacy babel src/dedent.ts --out-file dist/dedent.js",
"build:modern": "BABEL_ENV=modern babel src/dedent.ts --out-file dist/dedent.mjs",
"build:types": "tsup src/dedent.ts --dts-only",
"format": "prettier \"**/*\" --ignore-unknown",
"lint": "eslint . .*js --max-warnings 0 --report-unused-disable-directives",
"lint:knip": "knip",
"lint:md": "markdownlint \"**/*.md\" \".github/**/*.md\"",
"lint:package-json": "npmPkgJsonLint .",
"lint:packages": "pnpm dedupe --check",
"lint:spelling": "cspell \"**\" \".github/**/*\"",
"prepare": "husky install",
"should-semantic-release": "should-semantic-release --verbose",
"test": "jest",
"tsc": "tsc"
},
"lint-staged": {
"*": "prettier --ignore-unknown --write"
},
"devDependencies": {
"@babel/cli": "^7.21.5",
"@babel/preset-env": "^7.23.3",
"@babel/preset-typescript": "^7.23.3",
"@release-it/conventional-changelog": "^8.0.1",
"@types/babel-plugin-macros": "^3.1.0",
"@types/eslint": "^8.44.7",
"@types/jest": "^29.5.3",
"@typescript-eslint/eslint-plugin": "^6.10.0",
"@typescript-eslint/parser": "^6.10.0",
"babel-plugin-add-module-exports": "^1.0.4",
"babel-plugin-tester": "^11.0.4",
"console-fail-test": "^0.2.3",
"cspell": "^8.0.0",
"eslint": "^8.53.0",
"eslint-plugin-deprecation": "^2.0.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-jest": "^27.6.0",
"eslint-plugin-jsdoc": "^46.9.0",
"eslint-plugin-jsonc": "^2.10.0",
"eslint-plugin-markdown": "^3.0.1",
"eslint-plugin-n": "^16.3.1",
"eslint-plugin-no-only-tests": "^3.1.0",
"eslint-plugin-perfectionist": "^2.3.0",
"eslint-plugin-regexp": "^2.1.1",
"eslint-plugin-yml": "^1.10.0",
"husky": "^8.0.3",
"jest": "^29.7.0",
"jsonc-eslint-parser": "^2.4.0",
"knip": "^2.41.0",
"lint-staged": "^15.1.0",
"markdownlint": "^0.31.1",
"markdownlint-cli": "^0.37.0",
"npm-package-json-lint": "^7.1.0",
"npm-package-json-lint-config-default": "^6.0.0",
"prettier": "^3.0.3",
"prettier-plugin-curly": "^0.1.3",
"prettier-plugin-packagejson": "^2.4.6",
"release-it": "^17.0.0",
"should-semantic-release": "^0.2.1",
"tsup": "^7.2.0",
"typescript": "^5.2.2",
"yaml-eslint-parser": "^1.2.2"
},
"peerDependencies": {
"babel-plugin-macros": "^3.1.0"
},
"peerDependenciesMeta": {
"babel-plugin-macros": {
"optional": true
}
},
"packageManager": "pnpm@8.7.0"
}