-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.91 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
{
"name": "apify-actor-config",
"version": "1.0.3",
"private": false,
"description": "Types and utils for Apify Actor config",
"author": "Juro Oravec <juraj.oravec.josefson@gmail.com>",
"homepage": "https://github.com/jurooravec/apify-actor-config#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/jurooravec/apify-actor-config.git"
},
"bugs": {
"url": "https://github.com/jurooravec/apify-actor-config/issues"
},
"license": "MIT",
"keywords": [
"apify",
"actor"
],
"files": [
"dist"
],
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/cjs/index.d.js",
"bin": "dist/cjs/cli/index.js",
"engines": {
"node": ">=16.0.0"
},
"scripts": {
"start": "npm run start:dev",
"start:prod": "node dist/cjs/index.js",
"start:dev": "ts-node ./src/index.ts",
"build": "npm run build:cjs",
"build:all": "npm run build:cjs && npm run build:esm",
"build:cjs": "npm run build:version && tsc -p tsconfig.cjs.json",
"build:esm": "npm run build:version && tsc -p tsconfig.esm.json",
"build:examples": "npm run build && tsc -p tsconfig.examples.json",
"build:examples:actor": "node dist/cjs/cli/index.js gen -c ./dist/examples/config.js -o ./examples",
"build:version": "npx genversion src/version.js ",
"lint": "eslint ./src --ext .ts",
"lint:fix": "eslint ./src --ext .ts --fix",
"test": "vitest run",
"coverage": "vitest run --coverage"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"apify": "^3.1.4",
"crawlee": "^3.3.1",
"eslint": "^7.32.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-prettier": "^3.4.1",
"genversion": "^3.1.1",
"prettier": "^2.5.1",
"ts-node": "^10.9.1",
"typescript": "^5.0.4",
"vitest": "^0.30.1"
},
"dependencies": {
"commander": "^10.0.1"
}
}