-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.07 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
{
"name": "@rowslint/importer-js",
"description": "JavaScript binding for the Rowslint importer",
"author": "Mouad Ennaciri",
"license": "UNLICENSED",
"version": "0.0.15",
"type": "module",
"main": "./dist/rowslint.js",
"module": "./dist/rowslint.js",
"types": "./dist/main.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsc && vite build",
"postbuild": "cat dist/rowslint.umd.cjs > dist/rowslint.umd.js && del-cli dist/rowslint.umd.cjs",
"lint": "eslint \"src/**/*.ts\"",
"format": "prettier . --write",
"publish": "npm publish --access=public",
"prepublishOnly": "cp package.json package.backup.json && cp publish.package.json package.json",
"postpublish": "mv package.backup.json package.json"
},
"volta": {
"node": "22.14.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "8.26.0",
"@typescript-eslint/parser": "8.26.0",
"del-cli": "6.0.0",
"eslint": "9.21.0",
"prettier": "3.5.3",
"tsx": "4.19.3",
"typescript": "5.8.2",
"vite": "6.2.0",
"vite-plugin-dts": "4.5.3"
}
}