-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.29 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.29 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
{
"name": "get-fellows-action",
"version": "1.3.2",
"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",
"typecheck": "npx tsc --noEmit",
"fix": "npx eslint --fix 'src/**/*.ts' && npx prettier --write 'src/**/*.{ts,yml}'",
"lint": "npx eslint 'src/**/*.ts' && npx prettier --check 'src/**/*.{ts,yml}'"
},
"packageManager": "yarn@4.3.1",
"repository": {
"type": "git",
"url": "git+https://github.com/Bullrich/parity-action-template.git"
},
"author": "Javier Bullrich <javier@bullrich.dev>",
"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.11.1",
"@actions/github": "^6.0.1",
"@polkadot-api/descriptors": "portal:.papi/descriptors",
"polkadot-api": "^1.20.1",
"smoldot": "^2.0.39"
},
"devDependencies": {
"@eng-automation/js-style": "^3.1.0",
"@vercel/ncc": "^0.38.4",
"typescript": "^5.9.3",
"vitest": "^4.0.7"
},
"resolutions": {
"@polkadot-api/descriptors": "portal:./.papi/descriptors"
}
}