@tyleretters/discography 1.1.4 → 2.0.0
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/dist/discography.yml +35 -0
- package/dist/{discography.es.js → index.es.js} +63 -1
- package/dist/index.es.js.map +1 -0
- package/dist/index.umd.js +32 -0
- package/dist/index.umd.js.map +1 -0
- package/package.json +1 -2
- package/src/discography.yml +35 -0
- package/vite.config.js +1 -1
- package/dist/discography.es.js.map +0 -1
- package/dist/discography.umd.js +0 -32
- package/dist/discography.umd.js.map +0 -1
package/package.json
CHANGED
|
@@ -1,10 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tyleretters/discography",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "
|
|
4
|
+
"version": "2.0.0",
|
|
5
5
|
"description": "A canonical discography of the music of Tyler Etters.",
|
|
6
6
|
"main": "dist/index.es.js",
|
|
7
|
-
"types": "dist/index.d.ts",
|
|
8
7
|
"scripts": {
|
|
9
8
|
"convert": "./src/convert.py",
|
|
10
9
|
"build": "npm run convert && tsc && vite build && cp ./src/discography.yml ./dist/discography.yml"
|
package/src/discography.yml
CHANGED
|
@@ -1,3 +1,38 @@
|
|
|
1
|
+
- title: FOXFIRES / KYBALION
|
|
2
|
+
project: STUXNET
|
|
3
|
+
released: 02025-02-10
|
|
4
|
+
type: EP
|
|
5
|
+
format: Digital
|
|
6
|
+
role: Operator
|
|
7
|
+
label: Intertext
|
|
8
|
+
mp3: false
|
|
9
|
+
wav: false
|
|
10
|
+
tracks:
|
|
11
|
+
- number: 1
|
|
12
|
+
title: FOXFIRES / KYBALION
|
|
13
|
+
length: 00:26:53
|
|
14
|
+
streams:
|
|
15
|
+
- platform: Amazon
|
|
16
|
+
url: https://www.amazon.com/dp/B0DWWZ3JRF
|
|
17
|
+
- platform: Apple Music
|
|
18
|
+
url: https://music.apple.com/us/album/foxfires-kybalion-ep/1796608668
|
|
19
|
+
- platform: Bandcamp
|
|
20
|
+
url: https://stuxnet.bandcamp.com/album/foxfires-kybalion
|
|
21
|
+
- platform: Deezer
|
|
22
|
+
url: https://www.deezer.com/us/album/711748271
|
|
23
|
+
- platform: iHeartRadio
|
|
24
|
+
url: https://www.iheart.com/artist/stuxnet-610225/albums/foxfires-kybalion-313385710/
|
|
25
|
+
- platform: Spotify
|
|
26
|
+
url: https://open.spotify.com/album/7mh0Vr0dbBsndXQEHMPrmq
|
|
27
|
+
- platform: YouTube
|
|
28
|
+
url: https://www.youtube.com/watch?v=wr4PfhW2S3g
|
|
29
|
+
notes: |
|
|
30
|
+
“The inferno of the living is not something that will be; if there is one, it is what is already here, the inferno where we live every day, that we form by being together. There are two ways to escape suffering it. The first is easy for many: accept the inferno and become such a part of it that you can no longer see it. The second is risky and demands constant vigilance and apprehension: seek and learn to recognize who and what, in the midst of inferno, are not inferno, then make them endure, give them space.”
|
|
31
|
+
― Italo Calvino, Invisible Cities
|
|
32
|
+
credits: |
|
|
33
|
+
STUXNET is Tyler Etters.
|
|
34
|
+
Written while my city burned.
|
|
35
|
+
|
|
1
36
|
- title: KOWLOON WALLED CITY GIGA MIX
|
|
2
37
|
project: DJ STUXNET
|
|
3
38
|
released: 02024-12-21
|
package/vite.config.js
CHANGED
|
@@ -8,7 +8,7 @@ export default defineConfig({
|
|
|
8
8
|
lib: {
|
|
9
9
|
entry: path.resolve(__dirname, "src/index.ts"),
|
|
10
10
|
name: "discography",
|
|
11
|
-
fileName: (format) => `
|
|
11
|
+
fileName: (format) => `index.${format}.js`,
|
|
12
12
|
},
|
|
13
13
|
rollupOptions: {
|
|
14
14
|
external: pkg.devDependencies ? Object.keys(pkg.devDependencies) : [],
|