create-forma-extension 0.2.0 → 0.2.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 +22 -6
- package/template/package.json +2 -2
- package/template/src/vite-env.d.ts +1 -0
package/package.json
CHANGED
|
@@ -1,13 +1,20 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-forma-extension",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.1",
|
|
4
4
|
"description": "Create an Autodesk Forma extension with Vite, TypeScript and native Autodesk UI.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"author": "Dinar Sharafutdinov",
|
|
8
|
-
"engines": {
|
|
9
|
-
|
|
10
|
-
|
|
8
|
+
"engines": {
|
|
9
|
+
"node": ">=20"
|
|
10
|
+
},
|
|
11
|
+
"bin": {
|
|
12
|
+
"create-forma-extension": "bin/create-forma-extension.mjs"
|
|
13
|
+
},
|
|
14
|
+
"files": [
|
|
15
|
+
"bin/",
|
|
16
|
+
"template/"
|
|
17
|
+
],
|
|
11
18
|
"scripts": {
|
|
12
19
|
"build": "node scripts/sync-template.mjs",
|
|
13
20
|
"sync-template": "node scripts/sync-template.mjs"
|
|
@@ -16,7 +23,16 @@
|
|
|
16
23
|
"type": "git",
|
|
17
24
|
"url": "git+https://github.com/sharafutdinovdi/create-forma-extension.git"
|
|
18
25
|
},
|
|
19
|
-
"bugs": {
|
|
26
|
+
"bugs": {
|
|
27
|
+
"url": "https://github.com/sharafutdinovdi/create-forma-extension/issues"
|
|
28
|
+
},
|
|
20
29
|
"homepage": "https://github.com/sharafutdinovdi/create-forma-extension#readme",
|
|
21
|
-
"keywords": [
|
|
30
|
+
"keywords": [
|
|
31
|
+
"autodesk",
|
|
32
|
+
"forma",
|
|
33
|
+
"extension",
|
|
34
|
+
"create",
|
|
35
|
+
"vite",
|
|
36
|
+
"typescript"
|
|
37
|
+
]
|
|
22
38
|
}
|
package/template/package.json
CHANGED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
/// <reference types="vite/client" />
|