-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathpackage.json
More file actions
129 lines (129 loc) · 4.15 KB
/
Copy pathpackage.json
File metadata and controls
129 lines (129 loc) · 4.15 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"name": "ember-model-validator",
"version": "5.0.0",
"description": "ember addon. It adds validation support to your Ember-Data models.",
"keywords": [
"ember-addon",
"validations",
"ember-data",
"validator",
"validate"
],
"repository": "https://github.com/esbanarango/ember-model-validator",
"license": "MIT",
"author": "Esteban Arango Medina",
"imports": {
"#src/*": "./src/*"
},
"exports": {
".": {
"types": "./declarations/index.d.ts",
"default": "./dist/index.js"
},
"./addon-main.js": "./addon-main.cjs",
"./*": {
"types": "./declarations/*.d.ts",
"default": "./dist/*.js"
}
},
"files": [
"addon-main.cjs",
"declarations",
"dist",
"src"
],
"scripts": {
"build": "rollup --config",
"format": "prettier . --cache --write",
"lint": "concurrently \"pnpm:lint:*(!fix)\" --names \"lint:\" --prefixColors auto",
"lint:fix": "concurrently \"pnpm:lint:*:fix\" --names \"fix:\" --prefixColors auto && pnpm run format",
"lint:format": "prettier . --cache --check",
"lint:hbs": "ember-template-lint . --no-error-on-unmatched-pattern",
"lint:hbs:fix": "ember-template-lint . --fix --no-error-on-unmatched-pattern",
"lint:js": "eslint . --cache",
"lint:js:fix": "eslint . --fix",
"lint:types": "ember-tsc --noEmit",
"lint:publish": "pnpm build && publint run --level error",
"prepack": "rollup --config",
"start": "vite dev",
"test": "vite build --mode=development --out-dir dist-tests && testem --file testem.cjs ci --port 0"
},
"dependencies": {
"@embroider/addon-shim": "^1.8.9",
"decorator-transforms": "^2.2.2"
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/eslint-parser": "^7.25.1",
"@babel/plugin-transform-typescript": "^7.25.2",
"@babel/runtime": "^7.25.6",
"@ember-data/adapter": "~5.3.13",
"@ember-data/model": "~5.3.13",
"@ember-data/serializer": "~5.3.13",
"@ember/app-tsconfig": "^1.0.0",
"@ember/library-tsconfig": "^1.0.0",
"@ember/test-helpers": "^5.2.1",
"@ember/test-waiters": "^4.1.1",
"@embroider/addon-dev": "^8.1.0",
"@embroider/compat": "^4.1.0",
"@embroider/core": "^4.1.0",
"@embroider/macros": "^1.20.1",
"@embroider/vite": "^1.1.5",
"@eslint/js": "^9.17.0",
"@glint/ember-tsc": "^1.0.3",
"@glint/template": "^1.6.1",
"@glint/tsserver-plugin": "^2.0.0",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-node-resolve": "^16.0.3",
"@types/ember-data": "4.4.7",
"@types/ember-data__adapter": "4.0.2",
"@types/ember-data__model": "^4.0.0",
"@types/ember-data__serializer": "^4.0.1",
"@types/ember-data__store": "^4.0.2",
"@types/qunit": "^2.19.12",
"@warp-drive/build-config": "5.4.1",
"babel-plugin-ember-template-compilation": "^4.0.0",
"concurrently": "^9.0.1",
"ember-data": "~5.3.13",
"ember-page-title": "^9.0.3",
"ember-qunit": "^9.0.2",
"ember-source": "^6.7.0",
"ember-strict-application-resolver": "^0.1.0",
"ember-template-lint": "^7.9.0",
"eslint": "^9.17.0",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-ember": "^12.3.3",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-n": "^17.15.1",
"globals": "^16.1.0",
"prettier": "^3.4.2",
"prettier-plugin-ember-template-tag": "^2.0.4",
"publint": "^0.3.16",
"qunit": "^2.24.1",
"qunit-dom": "^3.4.0",
"rollup": "^4.22.5",
"testem": "^3.15.1",
"typescript": "^6.0.2",
"typescript-eslint": "^8.19.1",
"vite": "^7.1.9"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"ember": {
"edition": "octane"
},
"packageManager": "pnpm@10.33.0",
"ember-addon": {
"version": 2,
"type": "addon",
"main": "addon-main.cjs",
"app-js": {
"./decorators/model-validator.js": "./dist/_app_/decorators/model-validator.js",
"./decorators/object-validator.js": "./dist/_app_/decorators/object-validator.js",
"./decorators/core-validator.js": "./dist/_app_/decorators/core-validator.js",
"./initializers/model-locale.js": "./dist/_app_/initializers/model-locale.js"
}
}
}