-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.58 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
{
"name": "@feltmaps/js-sdk",
"version": "1.3.0",
"description": "An SDK for Felt maps",
"keywords": [
"felt",
"sdk"
],
"main": "./dist/client.cjs",
"types": "./dist/client.d.ts",
"exports": {
".": {
"import": "./dist/client.js",
"require": "./dist/client.cjs"
},
"./handler": {
"import": "./dist/handler.js",
"require": "./dist/handler.cjs"
}
},
"author": "Felt <[email protected]> (https://felt.com)",
"license": "MIT",
"files": [
"dist",
"handler.js",
"handler.d.ts",
"types-*.ts"
],
"repository": {
"type": "git",
"url": "git+https://github.com/felt/js-sdk.git"
},
"bugs": {
"url": "https://github.com/felt/js-sdk/issues"
},
"homepage": "https://developers.felt.com",
"type": "module",
"devDependencies": {
"@arethetypeswrong/cli": "^0.16.4",
"@changesets/cli": "^2.27.9",
"@microsoft/api-extractor": "^7.47.9",
"@types/node": "^22.7.4",
"happy-dom": "^15.7.4",
"knip": "^5.31.0",
"prettier": "^3.3.3",
"prettier-plugin-organize-imports": "^4.1.0",
"tsup": "^8.3.0",
"typedoc": "^0.26.7",
"typedoc-plugin-markdown": "^4.2.9",
"typedoc-plugin-remark": "^1.0.3",
"typedoc-plugin-zod": "^1.2.1",
"typescript": "^5.6.2",
"vite-tsconfig-paths": "^5.0.1",
"vitest": "^2.1.2",
"zod": "^3.23.8"
},
"optionalDependencies": {
"zod": "^3.23.8"
},
"scripts": {
"build": "npm run build:compile && npm run build:docs",
"build:compile": "tsup",
"build:docs": "typedoc",
"changeset": "changeset",
"check": "npm run check:client-bundle && npm run check:format && npm run check:api && npm run check:unused && npm run check:types && npm run check:test && npm run check:docs",
"check:api": "npm run build:compile && attw --pack . && api-extractor run",
"check:client-bundle": "npm run build:compile && node ./scripts/check-client-bundle-contents.js",
"check:docs": "npm run build:docs && bash ./scripts/check-api-docs.sh",
"check:format": "prettier --check .",
"check:unused": "knip",
"check:test": "vitest run",
"check:types": "tsc",
"ci": "npm run build && npm run check",
"update-api": "npm run build:compile && api-extractor run --local",
"local-release": "git checkout prerelease && git pull && npm run ci && changeset version && changeset publish && git push --follow-tags",
"enter-prerelease": "git checkout prerelease && git pull && changeset pre enter next",
"exit-prerelease": "git checkout prerelease && git pull && changeset pre exit",
"prepublishOnly": "npm run ci"
}
}