-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.85 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
{
"$schema": "https://json.schemastore.org/package",
"name": "icss-to-ts",
"version": "1.2.1",
"description": "Convert ICSS module exports to strongly typed TypeScript objects",
"author": "Patrick Rupp",
"license": "MIT",
"type": "module",
"module": "./dist/index.js",
"types": "./dist/types/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/types/index.d.ts"
},
"./dist": {
"import": "./dist/index.ts",
"types": "./dist/types/index.d.ts"
},
"./src": {
"import": "./src/index.ts"
}
},
"files": [
"./dist",
"./src"
],
"scripts": {
"dev": "bun build ./src/index.ts --outdir ./dist --watch",
"build": "rm -rf ./dist && bun --bun tsc && bun build ./src/index.ts --outdir ./dist --minify",
"lint": "bun --bun eslint . --config ./conf/eslint.config.cjs --max-warnings 0 --ignore-path .gitignore --fix",
"coverage": "bun test --coverage",
"dry-run": "npm publish --dry-run",
"prepack": "bun run build",
"prepublishOnly": "bun lint && bun test"
},
"devDependencies": {
"@types/bun": "1.1.11",
"@types/eslint": "8.56.12",
"@typescript-eslint/eslint-plugin": "7.18.0",
"@typescript-eslint/parser": "7.18.0",
"eslint": "8.57.1",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-airbnb-typescript": "18.0.0",
"eslint-import-resolver-typescript": "3.6.3",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-unicorn": "51.0.1",
"typescript": "5.5.4"
},
"homepage": "https://github.com/Brainshaker95/icss-to-ts",
"repository": {
"type": "git",
"url": "git+https://github.com/Brainshaker95/icss-to-ts.git"
},
"bugs": {
"url": "https://github.com/Brainshaker95/icss-to-ts/issues"
},
"keywords": [
"parser",
"icss",
"css",
"scss",
"modules",
"typescript"
]
}