forked from opensource-observer/oss-directory
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.71 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
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "oss-directory",
"version": "0.0.15",
"description": "Open source software directory",
"repository": {
"type": "git",
"url": "https://github.com/opensource-observer/oss-directory.git"
},
"author": "Kariba Labs",
"license": "Apache-2.0",
"bin": "./dist/cli.js",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"type": "module",
"files": [
"dist",
"README.md",
"package.json"
],
"engines": {
"node": ">=16"
},
"scripts": {
"build": "pnpm types && tsc",
"dev": "tsc-watch --onSuccess \"node dist/index.js\"",
"format:staged": "lint-staged",
"lint": "tsc --noEmit && pnpm lint:eslint && pnpm lint:prettier",
"lint:eslint": "eslint --ignore-path ./.gitignore --max-warnings 0 --cache .",
"lint:prettier": "prettier --ignore-path ./.gitignore --log-level warn --check **/*.ts",
"migrate": "pnpm start run-migrations",
"prepack": "pnpm build",
"prepare": "husky install",
"start": "node --loader ts-node/esm src/cli.ts",
"test": "NODE_OPTIONS=\"--no-warnings --experimental-vm-modules\" jest --passWithNoTests",
"transform": "pnpm start run-transformation",
"types": "pnpm types:json && pnpm types:mv",
"types:json": "pnpm json2ts -i './src/resources/schema/' -o 'src/types' --cwd './src/resources/schema'",
"types:mv": "find src/types/ -name '*.d.ts' -type f | sed s/\\.d.ts$// | xargs -I _ bash -c 'mv _.d.ts _.ts'",
"validate": "pnpm validate:collections && pnpm validate:projects",
"validate:collections": "pnpm start validate-collections",
"validate:projects": "pnpm start validate-projects",
"pyright": "pyright --pythonpath $(poetry env info --path)/bin/python"
},
"keywords": [],
"devDependencies": {
"@types/lodash": "^4.14.202",
"@types/node": "^20.10.4",
"@types/yargs": "^17.0.32",
"@typescript-eslint/eslint-plugin": "^6.14.0",
"@typescript-eslint/parser": "^6.14.0",
"eslint": "^8.55.0",
"husky": "^8.0.3",
"jest": "^29.7.0",
"json-schema-to-typescript": "^13.1.1",
"lint-staged": "^15.2.0",
"prettier": "^3.1.1",
"ts-jest": "^29.1.1",
"ts-jest-resolver": "^2.0.1",
"ts-node": "^10.9.2",
"tsc-watch": "^6.0.4",
"typescript": "^5.3.3"
},
"dependencies": {
"@ethereum-attestation-service/eas-sdk": "^1.3.7",
"ajv": "^8.12.0",
"ajv-formats": "^2.1.1",
"chalk": "^5.3.0",
"csv": "^6.3.9",
"dayjs": "^1.11.10",
"dotenv": "^16.3.1",
"ethers": "^6.9.0",
"glob": "^10.3.10",
"lodash": "^4.17.21",
"mkdirp": "^3.0.1",
"pyright": "^1.1.369",
"simple-git": "^3.21.0",
"tmp-promise": "^3.0.3",
"ts-adt": "^2.1.2",
"winston": "^3.11.0",
"yaml": "^2.3.4",
"yargs": "^17.7.2"
}
}