-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 3.13 KB
/
Copy pathpackage.json
File metadata and controls
103 lines (103 loc) · 3.13 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
{
"name": "motion-vscode-extension",
"displayName": "Motion Studio",
"description": "Visual and AI animation editing tools for Motion, the animation library for JavaScript, React, and Vue.",
"publisher": "motion",
"version": "0.0.9",
"homepage": "https://motion.dev",
"repository": {
"type": "git",
"url": "https://github.com/motiondivision/motion-vscode"
},
"keywords": [
"framer motion",
"motion",
"easing",
"springs",
"animation",
"css generation",
"css"
],
"author": {
"name": "Motion"
},
"engines": {
"vscode": "^1.99.3"
},
"categories": [
"AI",
"Other"
],
"icon": "images/logo.png",
"activationEvents": [
"onStartupFinished"
],
"main": "./dist/extension.js",
"contributes": {
"commands": [
{
"command": "motion.clearAuthToken",
"title": "Clear Auth Token",
"category": "Motion"
}
],
"viewsContainers": {
"activitybar": [
{
"id": "motion-activitybar",
"title": "Motion",
"icon": "images/logo.svg"
}
]
},
"views": {
"motion-activitybar": [
{
"type": "webview",
"id": "motion-editor",
"name": "Motion"
}
]
},
"viewsWelcome": [
{
"view": "motion-editor",
"contents": "Select a CSS or Motion bezier curve to get preview and edit."
}
]
},
"scripts": {
"vscode:prepublish": "yarn run build",
"compile": "yarn run check-types && node esbuild.js",
"watch": "npm-run-all -p watch:*",
"watch:esbuild": "node esbuild.js --watch",
"watch:tsc": "tsc --noEmit --watch --project tsconfig.json",
"build": "yarn run check-types && node esbuild.js --production",
"compile-tests": "tsc -p . --outDir out",
"watch-tests": "tsc -p . -w --outDir out",
"pretest": "yarn run compile-tests && yarn run compile",
"check-types": "tsc --noEmit",
"new": "vsce package --no-yarn && vsce publish && node scripts/publish-ovsx.js"
},
"devDependencies": {
"@types/mocha": "^10.0.10",
"@types/node": "20.x",
"@types/node-fetch": "^2.6.12",
"@types/react": "^19.1.8",
"@types/react-dom": "^19.1.6",
"@types/vscode": "^1.99.3",
"@vscode/test-cli": "^0.0.10",
"@vscode/test-electron": "^2.5.2",
"esbuild": "^0.25.3",
"npm-run-all": "^4.1.5",
"ovsx": "^0.10.6",
"typescript": "^5.8.3"
},
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e",
"dependencies": {
"motion": "^12.9.1",
"node-fetch": "^2.7.0",
"react": "^19.1.0",
"react-dom": "^19.1.0"
}
}