-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
101 lines (101 loc) · 2.86 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
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
93
94
95
96
97
98
99
100
101
{
"name": "archive-wasm",
"main": "src/archive.mjs",
"type": "module",
"bugs": {
"url": "https://github.com/spacedriveapp/archive-wasm/issues"
},
"files": [
"src/**/*"
],
"author": "Vítor Vasconcellos",
"version": "1.7.1",
"license": "GPL-3.0-or-later",
"engines": {
"node": ">=18.4"
},
"homepage": "https://github.com/spacedriveapp/archive-wasm#readme",
"keywords": [
"wasm",
"tar",
"zip",
"zst",
"gzip",
"zstd",
"unzip",
"archive",
"libarchive"
],
"repository": {
"type": "git",
"url": "git+https://github.com/spacedriveapp/archive-wasm.git"
},
"description": "LibArchive compiled to WASM with a idiomatic JS api",
"scripts": {
"predocs": "npm run clean",
"docs": "typedoc --plugin typedoc-plugin-markdown --hideBreadcrumbs --readme none --githubPages false --disableSources",
"prelint": "eslint --cache --max-warnings 0 .",
"lint": "tsc --noEmit --emitDeclarationOnly false",
"lint:fix": "npm run prelint -- --fix",
"preformat": "npm run lint:fix -- --rule 'prettier/prettier: off'",
"format": "prettier --write .",
"clean": "git clean -qfX ./src",
"build:wasm": "./wasm/build.sh",
"prebuild:js": "npm run prelint",
"build:js": "tsc --build --force",
"postbuild:js": "npm run format",
"prebuild": "npm run docs",
"build": "conc -c auto --timings --kill-others-on-fail 'npm:build:*'",
"test": "test/setupAndRun.sh",
"prebuildtest": "npm run build",
"buildtest": "npm run test",
"prepublishOnly": "npm run buildtest",
"prepack": "clean-package",
"postpack": "clean-package restore",
"editorconfig": "curl -sSLOJ 'https://raw.githubusercontent.com/jokeyrhyme/standard-editorconfig/main/.editorconfig'"
},
"ava": {
"timeout": "5s",
"files": [
"test/*"
],
"workerThreads": false,
"extensions": {
"mjs": true
}
},
"clean-package": {
"indent": 2,
"remove": [
"ava",
"scripts",
"clean-package",
"devDependencies"
]
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/eslint-parser": "^7.25.1",
"@babel/eslint-plugin": "^7.25.1",
"@babel/plugin-proposal-json-modules": "^7.25.4",
"@babel/plugin-syntax-import-attributes": "^7.25.6",
"@babel/preset-env": "7.25.4",
"@ianvs/prettier-plugin-sort-imports": "^4.3.1",
"@types/node": "^18.19.50",
"ava": "^6.1.3",
"clean-package": "^2.2.0",
"concurrently": "^9.0.1",
"eslint": "^9.10.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jsdoc": "^50.2.3",
"eslint-plugin-license-header": "^0.6.1",
"eslint-plugin-local-rules": "^3.0.2",
"eslint-plugin-prettier": "^5.2.1",
"globals": "^15.9.0",
"neostandard": "^0.11.5",
"prettier": "3.3.3",
"typedoc": "^0.26.7",
"typedoc-plugin-markdown": "^4.2.7",
"typescript": "^5.6.2"
}
}