ember-primitives 0.0.0 → 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +17 -18
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ember-primitives",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.1",
|
|
4
4
|
"description": "Making apps easier to build",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ember-addon"
|
|
@@ -12,22 +12,6 @@
|
|
|
12
12
|
"addon-main.cjs",
|
|
13
13
|
"dist"
|
|
14
14
|
],
|
|
15
|
-
"scripts": {
|
|
16
|
-
"build": "rollup --config ./rollup.config.mjs",
|
|
17
|
-
"lint": "pnpm -w exec lint",
|
|
18
|
-
"lint:fix": "pnpm -w exec lint fix",
|
|
19
|
-
"lint:js": "pnpm -w exec lint js",
|
|
20
|
-
"lint:js:fix": "pnpm -w exec lint js:fix",
|
|
21
|
-
"lint:hbs": "pnpm -w exec lint hbs",
|
|
22
|
-
"lint:hbs:fix": "pnpm -w exec lint hbs:fix",
|
|
23
|
-
"lint:package": "pnpm publint",
|
|
24
|
-
"lint:prettier:fix": "pnpm -w exec lint prettier:fix",
|
|
25
|
-
"lint:prettier": "pnpm -w exec lint prettier",
|
|
26
|
-
"lint:types": "glint",
|
|
27
|
-
"start": "rollup --config --watch",
|
|
28
|
-
"test": "echo 'A v2 addon does not have tests, run tests in test-app'",
|
|
29
|
-
"prepack": "rollup --config"
|
|
30
|
-
},
|
|
31
15
|
"dependencies": {
|
|
32
16
|
"@babel/runtime": "^7.22.3",
|
|
33
17
|
"@embroider/addon-shim": "1.8.6-unstable.d120477",
|
|
@@ -115,5 +99,20 @@
|
|
|
115
99
|
"ember-modifier": "^4.1.0",
|
|
116
100
|
"ember-resources": "^6.1.0",
|
|
117
101
|
"ember-source": "~4.12.0"
|
|
102
|
+
},
|
|
103
|
+
"scripts": {
|
|
104
|
+
"build": "rollup --config ./rollup.config.mjs",
|
|
105
|
+
"lint": "pnpm -w exec lint",
|
|
106
|
+
"lint:fix": "pnpm -w exec lint fix",
|
|
107
|
+
"lint:js": "pnpm -w exec lint js",
|
|
108
|
+
"lint:js:fix": "pnpm -w exec lint js:fix",
|
|
109
|
+
"lint:hbs": "pnpm -w exec lint hbs",
|
|
110
|
+
"lint:hbs:fix": "pnpm -w exec lint hbs:fix",
|
|
111
|
+
"lint:package": "pnpm publint",
|
|
112
|
+
"lint:prettier:fix": "pnpm -w exec lint prettier:fix",
|
|
113
|
+
"lint:prettier": "pnpm -w exec lint prettier",
|
|
114
|
+
"lint:types": "glint",
|
|
115
|
+
"start": "rollup --config --watch",
|
|
116
|
+
"test": "echo 'A v2 addon does not have tests, run tests in test-app'"
|
|
118
117
|
}
|
|
119
|
-
}
|
|
118
|
+
}
|