This repository was archived by the owner on Feb 17, 2026. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 2.24 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 2.24 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
{
"name": "@dryan-llc/mnml.js",
"version": "2.1.4",
"type": "module",
"description": "",
"main": "dist/mnml.js",
"types": "dist/mnml.d.ts",
"scripts": {
"postinstall": "lefthook install",
"test": "vitest",
"test:ui": "vitest --ui",
"test:run": "vitest run",
"test:coverage": "vitest run --coverage",
"test:browser": "wtr",
"clean": "rimraf dist",
"prebuild": "npm run clean",
"build": "tsc --project tsconfig.json",
"postbuild": "uglifyjs dist/mnml.js -o dist/mnml.min.js --compress --comments --source-map \"url=mnml.min.js.map,includeSources\" && MNML_VERSION=$(node -pe \"require('./package.json').version\") && cat dist/mnml.js | sed -E \"s/@version/@version $MNML_VERSION/g\" | tee dist/mnml.js > /dev/null && cat dist/mnml.min.js | sed -E \"s/@version/@version $MNML_VERSION/g\" | tee dist/mnml.min.js > /dev/null",
"dev": "npm run build -- --watch",
"prepublish": "npm run build",
"lint": "npm run lint:js && npm run lint:css",
"lint:fix": "npm run lint:js:fix && npm run lint:css:fix",
"lint:js": "eslint .",
"lint:js:fix": "eslint . --fix",
"lint:css": "stylelint \"**/*.css\"",
"lint:css:fix": "stylelint \"**/*.css\" --fix",
"format": "prettier --write .",
"analyze": "cem analyze"
},
"author": "dryan <dryan@users.noreply.github.com>",
"license": "MPL",
"devDependencies": {
"@custom-elements-manifest/analyzer": "*",
"@eslint/js": "*",
"@eslint/json": "^0.14.0",
"@rollup/plugin-commonjs": "*",
"@rollup/plugin-node-resolve": "*",
"@rollup/plugin-terser": "*",
"@rollup/plugin-typescript": "*",
"@types/eslint__js": "*",
"@types/node": "*",
"@vitest/coverage-v8": "*",
"@vitest/ui": "*",
"@web/test-runner": "*",
"@web/test-runner-commands": "*",
"@web/test-runner-playwright": "*",
"eslint": "*",
"eslint-config-prettier": "*",
"jiti": "^2.6.1",
"lit": "*",
"prettier": "*",
"rimraf": "^6.0.1",
"rollup": "*",
"rollup-plugin-summary": "*",
"stylelint": "*",
"stylelint-config-recess-order": "*",
"stylelint-config-standard": "*",
"typescript": "^5.9.2",
"typescript-eslint": "*",
"uglify-js": "^3.19.3",
"vitest": "*"
},
"files": [
"dist/**/*"
]
}