-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.56 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 1.56 KB
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
{
"name": "@plumelo/thunder",
"version": "1.0.0",
"type": "module",
"keywords": [
"lightningcss",
"css-modules"
],
"author": "Iulian Meghea <iulian@plumelo.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/plumelo/thunder/issues"
},
"homepage": "https://github.com/plumelo/thunder#readme",
"description": "A tiny wrapper around lightningcss",
"main": "index.js",
"types": "./dist/index.d.ts",
"sideEffects": false,
"engines": {
"node": ">=18"
},
"scripts": {
"lint": "tsc && eslint --cache .",
"build": "tsc -p tsconfig.build.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/plumelo/thunder.git"
},
"publishConfig": {
"access": "public"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./resolve": {
"types": "./dist/resolve.d.ts",
"default": "./dist/resolve.js"
}
},
"dependencies": {
"browserslist": "^4.28.7",
"enhanced-resolve": "^5.24.4",
"lightningcss": "^1.33.0"
},
"devDependencies": {
"@eslint/js": "^9.0.0",
"@semantic-release/changelog": "^7.0.0",
"@semantic-release/git": "^11.0.1",
"@types/node": "^26.1.0",
"eslint": "^9.0.0",
"eslint-config-prettier": "^10.0.1",
"eslint-import-resolver-typescript": "^4.2.2",
"eslint-plugin-import": "^2.29.1",
"prettier": "^3.2.5",
"semantic-release": "^25.0.1",
"typescript": "^6.0.3",
"typescript-eslint": "^8.56.0"
}
}