-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·40 lines (40 loc) · 1021 Bytes
/
package.json
File metadata and controls
executable file
·40 lines (40 loc) · 1021 Bytes
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
{
"name": "@github/remote-form",
"version": "0.2.0",
"description": "Decorator that will submit a form over AJAX",
"repository": "github/remote-form",
"files": [
"dist"
],
"main": "dist/index.js",
"module": "dist/index.js",
"types:": "dist/index.d.ts",
"scripts": {
"clean": "rm -rf dist",
"lint": "eslint src/*.ts test/*.js",
"prebuild": "npm run clean && npm run lint && mkdir dist",
"build": "tsc",
"test": "vitest run",
"prepublishOnly": "npm run build",
"postpublish": "npm publish --ignore-scripts --@github:registry='https://npm.pkg.github.com'"
},
"prettier": "@github/prettier-config",
"keywords": [
"decorator",
"remote-form",
"form"
],
"eslintIgnore": [
"dist/"
],
"license": "MIT",
"devDependencies": {
"@github/prettier-config": "0.0.4",
"@vitest/browser": "^3.2.4",
"eslint": "^8.17.0",
"eslint-plugin-github": "^4.3.6",
"playwright": "^1.56.0",
"typescript": "^4.7.3",
"vitest": "^3.2.4"
}
}