-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
42 lines (42 loc) · 1015 Bytes
/
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
{
"name": "@commencis/prettier-config",
"version": "1.1.0",
"description": "Commencis Prettier config",
"author": "Commencis WEB Team",
"license": "Apache-2.0",
"type": "module",
"homepage": "https://github.com/Commencis/js-toolkit/tree/main/packages/prettier-config#readme",
"bugs": {
"url": "https://github.com/Commencis/js-toolkit/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Commencis/js-toolkit.git",
"directory": "packages/prettier-config"
},
"publishConfig": {
"access": "public"
},
"main": "./dist/index.js",
"files": [
"dist",
"*.md",
"LICENSE"
],
"exports": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"scripts": {
"dev": "tsup --watch",
"build": "tsup",
"lint:types": "tsc --noEmit"
},
"devDependencies": {
"@commencis/ts-config": "workspace:*",
"prettier": "3.4.2",
"tsup": "8.3.5",
"typescript": "5.7.2"
}
}