generated from Bullrich/parity-action-template
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
41 lines (41 loc) · 1.25 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
{
"name": "get-fellows-action",
"version": "1.2.0",
"description": "Fetch all the GitHub handles from the Fellows",
"main": "src/index.ts",
"scripts": {
"start": "node dist",
"build": "ncc build --license LICENSE",
"postinstall": "papi",
"test": "vitest",
"fix": "npx eslint --fix 'src/**/*.ts' && npx prettier --write 'src/**/*.{ts,yml}'",
"lint": "npx eslint 'src/**/*.ts' && npx prettier --check 'src/**/*.{ts,yml}'"
},
"packageManager": "[email protected]",
"repository": {
"type": "git",
"url": "git+https://github.com/Bullrich/parity-action-template.git"
},
"author": "Javier Bullrich <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Bullrich/parity-action-template/issues"
},
"homepage": "https://github.com/Bullrich/parity-action-template#readme",
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/github": "^5.1.1",
"@polkadot-api/descriptors": "file:.papi/descriptors",
"polkadot-api": "^0.12.0",
"smoldot": "2.0.29"
},
"devDependencies": {
"@eng-automation/js-style": "^3.1.0",
"@vercel/ncc": "^0.38.1",
"typescript": "^5.5.3",
"vitest": "^1.6.0"
},
"resolutions": {
"@polkadot-api/descriptors": "portal:./.papi/descriptors"
}
}