-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.69 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.69 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
{
"name": "codec-string",
"version": "0.1.14",
"description": "decode the codecs= string in a media mime type",
"type": "module",
"engines": {
"node": ">=16"
},
"exports": {
".": {
"script": "./dist/script/codec-string.js",
"import": "./dist/esm/codec-string.js",
"require": "./dist/cjs/codec-string.js"
},
"./package.json": "./package.json"
},
"scripts": {
"clean": "rm -rf dist",
"build": "webpack --config ./webpack-esm.cjs --mode production && webpack --config ./webpack-cjs.cjs --mode production --no-output-clean && webpack --config ./webpack-script.cjs --mode production --no-output-clean",
"postbuild": "vitest --config ./vitest.build.config.js --run",
"lint": "eslint src/*.js",
"start": "webpack serve --config ./webpack-esm.cjs --mode development",
"test": "vitest"
},
"sideEffects": [
"./src/decode.js"
],
"types": "index.d.ts",
"keywords": [],
"author": "paul_higgs@hotmail.com",
"license": "BSD",
"dependencies": {
"@babel/preset-env": "^7.28.5",
"babel-loader": "^10.0.0",
"clean-webpack-plugin": "^4.0.0",
"eslint-plugin-import-quotes": "^0.0.1",
"eslint-webpack-plugin": "^5.0.2",
"html-webpack-plugin": "^5.6.5",
"webpack-merge": "^6.0.1"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"copy-webpack-plugin": "^13.0.1",
"del-webpack-plugin": "^2.1.0",
"eslint": "^9.39.2",
"globals": "^16.5.0",
"jsdom": "^27.3.0",
"vitest": "^4.0.16",
"webpack-cli": "^6.0.1",
"webpack-dev-server": "^5.2.2"
},
"repository": {
"type": "git",
"url": "https://github.com/paulhiggs/codec-string"
},
"files": [
"index.d.ts",
"dist"
]
}