-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.48 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.48 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "getcourse-js-sdk",
"version": "0.1.5",
"packageManager": "pnpm@8.0.0",
"description": "GetCourse JS SDK",
"author": "Denis Belyaev",
"license": "MIT",
"funding": "https://github.com/sponsors/belyaev-dev",
"homepage": "https://github.com/belyaev-dev/getcourse-js-sdk",
"repository": {
"type": "git",
"url": "https://github.com/belyaev-dev/getcourse-js-sdk.git"
},
"bugs": "https://github.com/belyaev-dev/getcourse-js-sdk/issues",
"keywords": [
"getcourse",
"api",
"typescript",
"sdk",
"js"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"engines": {
"node": ">=16",
"pnpm": ">=8"
},
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"prepublishOnly": "pnpm run build",
"release": "pnpm build && bumpp --commit --push --tag && pnpm publish",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "vitest",
"test:watch": "vitest --watch",
"coverage": "vitest run --coverage"
},
"devDependencies": {
"@antfu/eslint-config": "^0.40.2",
"@vitest/coverage-c8": "^0.32.2",
"bumpp": "^9.1.1",
"eslint": "^8.46.0",
"tsup": "^7.2.0",
"typescript": "^5.1.6",
"vite": "^4.4.9",
"vitest": "^0.34.1"
},
"publishConfig": {
"access": "public"
}
}