-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 881 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 881 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
{
"name": "@yepcode/run",
"version": "1.11.1",
"description": "YepCode Run",
"homepage": "https://yepcode.io/run/",
"author": "YepCode Developers <developers@yepcode.io>",
"license": "See LICENSE file",
"keywords": [
"yepcode",
"run"
],
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=18",
"npm": ">=9"
},
"exports": {
".": "./dist/index.js"
},
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "node --env-file=.env node_modules/.bin/jest --coverage --verbose",
"test:ci": "jest --coverage --verbose",
"build": "tsc --project tsconfig.json"
},
"devDependencies": {
"@swc/core": "^1.11.13",
"@swc/jest": "^0.2.37",
"@types/jest": "^29.5.14",
"eslint": "^9.23.0",
"jest": "^29.7.0",
"typescript": "^5.8.2"
},
"types": "dist/index.d.ts"
}