-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.06 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 2.06 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
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
{
"name": "@nsis/language-data",
"version": "0.11.0",
"description": "Data for contributed NSIS language files in JSON format",
"author": "Jan T. Sott",
"license": "Zlib",
"files": [
"data/",
"dist/"
],
"repository": {
"type": "git",
"url": "https://github.com/NSIS-Dev/language-data.git"
},
"keywords": [
"nsis"
],
"type": "module",
"sideEffects": false,
"exports": {
".": {
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
},
"./codepages": {
"import": {
"types": "./dist/codepages.d.mts",
"default": "./dist/codepages.mjs"
},
"require": {
"types": "./dist/codepages.d.cts",
"default": "./dist/codepages.cjs"
}
},
"./meta": {
"import": {
"types": "./dist/meta.d.mts",
"default": "./dist/meta.mjs"
},
"require": {
"types": "./dist/meta.d.cts",
"default": "./dist/meta.cjs"
}
},
"./languages": {
"import": {
"types": "./dist/languages.d.mts",
"default": "./dist/languages.mjs"
},
"require": {
"types": "./dist/languages.d.cts",
"default": "./dist/languages.cjs"
}
}
},
"scripts": {
"build:code": "tsdown",
"build:json": "node tools/build.js",
"build": "npm run build:json && npm run build:code",
"lint": "biome check",
"prepack": "npm run build",
"test": "npm run lint"
},
"devDependencies": {
"@commitlint/cli": "^20.5.0",
"@commitlint/config-conventional": "^20.5.0",
"@idleberg/configs": "^0.4.2",
"@nsis/mui-language-strings": "^0.3.0",
"@nsis/nlf": "^0.13.0",
"@types/node": "^24.12.0",
"globby": "^11.1.0",
"makensis": "^3.0.4",
"npm-run-all": "^4.1.5",
"rimraf": "^6.1.3",
"tsdown": "^0.21.4",
"tslib": "^2.8.1",
"typescript": "^5.9.3",
"unplugin-macros": "^0.19.1"
},
"pnpm": {
"onlyBuiltDependencies": [
"lefthook"
]
},
"packageManager": "pnpm@10.32.1+sha512.a706938f0e89ac1456b6563eab4edf1d1faf3368d1191fc5c59790e96dc918e4456ab2e67d613de1043d2e8c81f87303e6b40d4ffeca9df15ef1ad567348f2be"
}