@lionweb/io-lionweb-mps-specific 0.7.0-alpha.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/CHANGELOG.md +6 -0
- package/LICENSE +201 -0
- package/README.md +20 -0
- package/dist/definition.d.ts +10 -0
- package/dist/definition.d.ts.map +1 -0
- package/dist/definition.js +46 -0
- package/dist/definition.js.map +1 -0
- package/dist/deserializer.d.ts +4 -0
- package/dist/deserializer.d.ts.map +1 -0
- package/dist/deserializer.js +22 -0
- package/dist/deserializer.js.map +1 -0
- package/dist/facade.d.ts +4 -0
- package/dist/facade.d.ts.map +1 -0
- package/dist/facade.js +73 -0
- package/dist/facade.js.map +1 -0
- package/dist/index.d.ts +4 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +20 -0
- package/dist/index.js.map +1 -0
- package/dist/io.lionweb.mps.specific.d.ts +35 -0
- package/dist/io.lionweb.mps.specific.d.ts.map +1 -0
- package/dist/io.lionweb.mps.specific.js +60 -0
- package/dist/io.lionweb.mps.specific.js.map +1 -0
- package/io.lionweb.mps.specific.json +863 -0
- package/io.lionweb.mps.specific.txt +34 -0
- package/package.json +36 -0
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
language io.lionweb.mps.specific
|
|
2
|
+
version: 2024-01
|
|
3
|
+
dependsOn:
|
|
4
|
+
LionCore_M3 (2023.1)
|
|
5
|
+
entities (↓name):
|
|
6
|
+
|
|
7
|
+
annotation ConceptDescription
|
|
8
|
+
annotates: Classifier
|
|
9
|
+
features (↓name):
|
|
10
|
+
conceptAlias: String?
|
|
11
|
+
conceptShortDescription: String?
|
|
12
|
+
helpUrl: String?
|
|
13
|
+
|
|
14
|
+
annotation Deprecated
|
|
15
|
+
annotates: IKeyed
|
|
16
|
+
features (↓name):
|
|
17
|
+
build: String?
|
|
18
|
+
comment: String?
|
|
19
|
+
|
|
20
|
+
annotation KeyedDescription
|
|
21
|
+
annotates: IKeyed
|
|
22
|
+
features (↓name):
|
|
23
|
+
documentation: String?
|
|
24
|
+
seeAlso -> Node[0..*]
|
|
25
|
+
|
|
26
|
+
annotation ShortDescription
|
|
27
|
+
annotates: Node
|
|
28
|
+
features (↓name):
|
|
29
|
+
description: String?
|
|
30
|
+
|
|
31
|
+
annotation VirtualPackage implements INamed
|
|
32
|
+
annotates: Node
|
|
33
|
+
|
|
34
|
+
|
package/package.json
ADDED
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@lionweb/io-lionweb-mps-specific",
|
|
3
|
+
"version": "0.7.0-alpha.1",
|
|
4
|
+
"description": "TypeScript implementation of the io.lionweb.mps.specific language",
|
|
5
|
+
"main": "dist/index.js",
|
|
6
|
+
"types": "dist/index.d.ts",
|
|
7
|
+
"typings": "dist/index.d.ts",
|
|
8
|
+
"type": "module",
|
|
9
|
+
"license": "Apache-2.0",
|
|
10
|
+
"repository": {
|
|
11
|
+
"type": "git",
|
|
12
|
+
"url": "git+https://github.com/LionWeb-io/lionweb-typescript.git"
|
|
13
|
+
},
|
|
14
|
+
"bugs": {
|
|
15
|
+
"url": "https://github.com/LionWeb-io/lionweb-typescript/issues"
|
|
16
|
+
},
|
|
17
|
+
"dependencies": {
|
|
18
|
+
"@lionweb/core": "0.7.0-alpha.1",
|
|
19
|
+
"@lionweb/json": "0.7.0-alpha.1",
|
|
20
|
+
"@lionweb/ts-utils": "0.7.0-alpha.1",
|
|
21
|
+
"littoral-templates": "0.3.0",
|
|
22
|
+
"nanoid": "5.0.9"
|
|
23
|
+
},
|
|
24
|
+
"scripts": {
|
|
25
|
+
"clean": "rm -rf dist/ node_modules/ lionweb-io-lionweb-mps-specific-*.tgz",
|
|
26
|
+
"build": "tsc",
|
|
27
|
+
"lint": "eslint src",
|
|
28
|
+
"prep:pre-release": "npm run clean && npm install && npm run build",
|
|
29
|
+
"prerelease-alpha": "npm run prep:pre-release",
|
|
30
|
+
"release-alpha": "npm publish --tag alpha",
|
|
31
|
+
"prerelease-beta": "npm run prep:pre-release",
|
|
32
|
+
"release-beta": "npm publish --tag beta",
|
|
33
|
+
"prerelease": "npm run prep:pre-release",
|
|
34
|
+
"release": "npm publish"
|
|
35
|
+
}
|
|
36
|
+
}
|