-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.54 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
{
"name": "accel-record",
"version": "1.19.0",
"description": "Accel Record is a type-safe and synchronous ORM for TypeScript. It adopts the Active Record pattern and is heavily influenced by Ruby on Rails' Active Record.",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./attributes": {
"types": "./dist/attributes.d.ts",
"default": "./dist/attributes.js"
},
"./enums": {
"types": "./dist/enums.d.ts",
"default": "./dist/enums.js"
},
"./search": {
"types": "./dist/search.d.ts",
"default": "./dist/search.js"
},
"./errors": {
"types": "./dist/errors.d.ts",
"default": "./dist/errors.js"
}
},
"scripts": {
"build": "tsc",
"test": "vitest",
"test:migrate": "DATABASE_URL=file:./test.db npx prisma migrate dev --schema=tests/prisma/schema.prisma"
},
"repository": {
"type": "git",
"url": "git+https://github.com/koyopro/accella.git"
},
"bugs": {
"url": "https://github.com/koyopro/accella/issues"
},
"homepage": "https://github.com/koyopro/accella/tree/master/packages/accel-record",
"keywords": [
"accella",
"accel-record",
"activerecord",
"orm"
],
"files": [
"README.md",
"dist"
],
"author": "koyopro",
"license": "Apache-2.0",
"dependencies": {
"accel-record-core": "^1.19.0",
"accel-record-factory": "^1.17.0",
"prisma-generator-accel-record": "^1.18.0"
}
}