assemblerjs 0.0.9 → 0.0.91
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/README.md +14 -0
- package/package.json +7 -9
package/README.md
CHANGED
|
@@ -1 +1,15 @@
|
|
|
1
1
|
# assembler.js
|
|
2
|
+
|
|
3
|
+
`assembler.js` name is a tribute to Gilles Deleuze and Felix Guattari concept of [_Agencement_](<https://fr.wikipedia.org/wiki/Agencement_(philosophie)>) (in french) that can be translated into [Assemblage](<https://en.wikipedia.org/wiki/Assemblage_(philosophy)>).
|
|
4
|
+
|
|
5
|
+
## Install
|
|
6
|
+
|
|
7
|
+
```sh
|
|
8
|
+
yarn add assemblerjs
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
```sh
|
|
12
|
+
npm install assemblerjs
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
## Usage
|
package/package.json
CHANGED
|
@@ -1,16 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "assemblerjs",
|
|
3
3
|
"description": "A simple and zero-dependency DI package written in typescript.",
|
|
4
|
-
"version": "0.0.
|
|
4
|
+
"version": "0.0.91",
|
|
5
5
|
"author": "Benoît LAHOZ <info@benoitlahoz.io>",
|
|
6
|
-
"
|
|
7
|
-
"type": "git",
|
|
8
|
-
"url": "git+https://github.com/benoitlahoz/assemblerjs"
|
|
9
|
-
},
|
|
10
|
-
"bugs": {
|
|
11
|
-
"url": "https://github.com/benoitlahoz/assemblerjs/issues"
|
|
12
|
-
},
|
|
13
|
-
"homepage": "https://github.com/benoitlahoz/assemblerjs#README",
|
|
6
|
+
"bugs": "https://github.com/benoitlahoz/assemblerjs/issues",
|
|
14
7
|
"devDependencies": {
|
|
15
8
|
"@swc/core": "^1.9.3",
|
|
16
9
|
"@types/node": "^22.5.5",
|
|
@@ -36,6 +29,7 @@
|
|
|
36
29
|
"dist/**/*",
|
|
37
30
|
"README.md"
|
|
38
31
|
],
|
|
32
|
+
"homepage": "https://github.com/benoitlahoz/assemblerjs#README",
|
|
39
33
|
"keywords": [
|
|
40
34
|
"composition",
|
|
41
35
|
"decorators",
|
|
@@ -48,6 +42,10 @@
|
|
|
48
42
|
],
|
|
49
43
|
"license": "MIT",
|
|
50
44
|
"main": "dist/index.js",
|
|
45
|
+
"repository": {
|
|
46
|
+
"type": "git",
|
|
47
|
+
"url": "git+https://github.com/benoitlahoz/assemblerjs.git"
|
|
48
|
+
},
|
|
51
49
|
"scripts": {
|
|
52
50
|
"build": "vite build",
|
|
53
51
|
"coverage": "vitest run --coverage --passWithNoTests && istanbul-badges-readme",
|