-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.28 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.28 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
{
"name": "@softcreatr/wspackager",
"version": "2.0.0",
"description": "A tool that handles WCF/WSC packaging by analyzing package.xml instructions.",
"type": "module",
"homepage": "https://github.com/SoftCreatRMedia/wspackager",
"bugs": {
"url": "https://github.com/SoftCreatRMedia/wspackager/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SoftCreatRMedia/wspackager.git"
},
"publishConfig": {
"access": "public"
},
"license": "MIT",
"author": "Sascha Greuel <sascha@softcreatr.de> (https://softcreatr.dev)",
"contributors": [
"Christopher Mühl <christopher@padarom.io> (https://padarom.io)"
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"exports": {
".": {
"types": "./lib/index.d.ts",
"import": "./lib/index.js"
}
},
"bin": {
"wspackager": "lib/bin.js"
},
"files": [
"lib",
"README.md",
"CHANGELOG.md",
"MIGRATION.md"
],
"scripts": {
"compile": "tsc -p tsconfig.json",
"typecheck": "tsc -p tsconfig.json --noEmit",
"lint": "eslint \"src/**/*.ts\"",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.js\" \"*.{md,json,ts,yml,yaml}\" \".github/workflows/*.{yml,yaml}\" \".changeset/*.md\"",
"format:check": "prettier --check \"src/**/*.ts\" \"test/**/*.js\" \"*.{md,json,ts,yml,yaml}\" \".github/workflows/*.{yml,yaml}\" \".changeset/*.md\"",
"check": "npm run lint && npm run typecheck && npm test && npm run format:check",
"changeset": "changeset",
"version-packages": "changeset version",
"release": "changeset publish",
"prepublishOnly": "npm run compile",
"test": "npm run compile && vitest run"
},
"dependencies": {
"commander": "^14.0.3",
"glob": "^13.0.6",
"tar": "^7.5.9",
"xml2js": "^0.6.2"
},
"devDependencies": {
"@changesets/cli": "^2.29.8",
"@eslint/eslintrc": "^3.3.4",
"@eslint/js": "^10.0.1",
"@types/node": "^25.3.0",
"@types/xml2js": "^0.4.14",
"@typescript-eslint/eslint-plugin": "^8.56.1",
"@typescript-eslint/parser": "^8.56.1",
"esbuild": "^0.27.3",
"eslint": "^10.0.2",
"eslint-config-prettier": "^10.1.8",
"globals": "^17.3.0",
"prettier": "^3.8.1",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
},
"engines": {
"node": ">=18"
}
}