-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.85 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.85 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
64
65
66
{
"name": "@ensembleblock/airtable",
"type": "module",
"version": "0.0.11",
"repository": "ensembleblock/airtable",
"homepage": "https://github.com/ensembleblock/airtable#readme",
"license": "MIT",
"author": {
"name": "Eric L. Carraway",
"url": "https://ensembleblock.com/"
},
"engines": {
"node": ">=18"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./package.json": "./package.json"
},
"types": "dist/index.d.ts",
"main": "dist/index.js",
"sideEffects": false,
"files": [
"dist",
"README.md"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsc",
"clean": "rm -rf dist node_modules",
"clean:build": "rm -rf dist",
"dev": "tsc --watch",
"fix": "eslint --fix --quiet . ; prettier --write --log-level=silent .",
"format": "prettier --check \"**/*.{cjs,js,md,ts}\"",
"lint": "eslint src/*.ts",
"prebuild": "npm run clean:build",
"prepare": "npm run build",
"prepublishOnly": "npm test",
"pretest": "npm run build",
"release": "np",
"test": "npm run lint && npm run typecheck && vitest run",
"test:dev": "npm run lint && npm run typecheck && vitest",
"typecheck": "tsc --noEmit"
},
"devDependencies": {
"@percuss.io/eslint-config-ericcarraway": "^4.1.0",
"@types/node": "^22.1.0",
"@typescript-eslint/eslint-plugin": "^7.16.1",
"@typescript-eslint/parser": "^7.16.1",
"eslint": "^8.57.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-sort-destructure-keys": "^2.0.0",
"eslint-plugin-typescript-sort-keys": "^3.2.0",
"np": "^10.0.7",
"prettier": "^3.3.3",
"typescript": "~5.3",
"vitest": "^2.0.5",
"vitest-fetch-mock": "^0.3.0"
}
}