-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.05 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 2.05 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
67
68
69
70
{
"name": "easy-airtable-api",
"version": "0.1.0",
"type": "module",
"description": "Lightweight TypeScript-first Airtable client with metadata-based type generation.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"exports": {
".": {
"types": "./lib/index.d.ts",
"import": "./lib/index.js"
},
"./codegen": {
"types": "./lib/codegen/index.d.ts",
"import": "./lib/codegen/index.js"
}
},
"bin": {
"easy-airtable-api": "lib/cli.js"
},
"scripts": {
"watch": "tsc --watch",
"build": "rm -r ./lib && tsc",
"prepublishOnly": "npm test && npm run build",
"release": "npm run prepublishOnly && npm pack && npm publish --ignore-scripts",
"lint": "eslint 'src/**/*.{ts,tsx}'",
"test": "npm run test:all",
"test:codegen": "vitest run tests/codegen.test.ts",
"test:integration": "RUN_AIRTABLE_INTEGRATION_TESTS=true vitest run tests/get-record.test.ts tests/get-records.test.ts tests/create-records.test.ts tests/update-records.test.ts tests/delete-records.test.ts",
"test:all": "vitest run"
},
"keywords": [
"airtable"
],
"repository": {
"type": "git",
"url": "git+https://github.com/marcellocurto/easy-airtable-api.git"
},
"homepage": "https://marcellocurto.com/code/easy-airtable-api",
"author": "Marcello Curto",
"license": "MIT",
"prettier": {
"trailingComma": "es5",
"tabWidth": 2,
"useTabs": false,
"semi": true,
"singleQuote": true,
"proseWrap": "preserve",
"quoteProps": "as-needed",
"arrowParens": "always",
"bracketSpacing": true,
"endOfLine": "lf",
"htmlWhitespaceSensitivity": "css",
"insertPragma": false,
"singleAttributePerLine": false,
"bracketSameLine": false,
"jsxBracketSameLine": false,
"jsxSingleQuote": true,
"printWidth": 80
},
"devDependencies": {
"@types/node": "^20.11.30",
"@typescript-eslint/eslint-plugin": "^7.3.1",
"@typescript-eslint/parser": "^7.3.1",
"dotenv": "^16.4.5",
"eslint": "^8.57.0",
"typescript": "^5.4.3",
"vitest": "^1.4.0"
}
}